3
votes
3answers
81 views
+100
Log4J: Strategies for creating Logger instances
I decided to use Log4J logging framework for a new Java project.
I am wondering what strategy should I use for creating/managing Logger instances and why?
one instance of Logger …
0
votes
0answers
4 views
How to erase old queries in @logger using Ruby on Rails
Hi All,
I'm developing an application using Ruby on Rails.
I would like to erase old queries in the ActiveRecord::Base.logger object every time when i call a new action, essentia …
3
votes
4answers
265 views
Simple C++ logger by using singleton pattern
Due to the flooding examples of implementing logger using Singleton pattern, I just written a simple C++ logger in the same approach for my program. However, since the famous doubl …
0
votes
2answers
38 views
Share global logger among module/classes
What is the best (proper) way to share a logger instance amongst many ruby classes?
Right now I just created the logger as a global $logger = Logger.new variable, but I have a fee …
0
votes
4answers
316 views
How do I use a custom log for my rake tasks in Ruby on Rails?
I have a rake task that calls functions like this:
namespace :blah do
task :hello_world => :environment do
logger.info("Hello World")
helloworld2
end
end
…
0
votes
1answer
60 views
How do I lock the console across threads in C#.NET?
Hello :)
I have a logger class that handles various information display with pretty colors (yay.). However, since it writes to the console in separated steps (i.e. set color to re …
2
votes
1answer
49 views
Ruby: Send logger messages to a string variable?
I have a small framework that is logging some info and debug messages using the Logger object built into ruby. At run time, this works great. At unit test time (using rspec if it m …
0
votes
1answer
38 views
java.util.logger constructor description bug or javadoc error ?
When I got a new logger it always had the level set to INFO but the documentation told otherwise (null), Hence I opened the code. The documentation and the code doesnt match. I am …
4
votes
9answers
342 views
Should a “static final Logger” be declared in UPPER-CASE?
In Java, static final variables are constants and the convention is that they should be in upper-case. However, I have seen that most people declare loggers in lower-case which com …
1
vote
3answers
102 views
How to silence the call to a rails controller’s action all together
I've figured out how to silence the contents of an action by wrapping everything inside the action's method in a logger.silence block.
However, I still get the call to the action …
0
votes
1answer
162 views
What is the fastest Ruby logger implementation?
I want to find the fastest logger Ruby has to offer. My intuition tells me that syslog would win in this race. But my intuition seems to be wrong. Syslog turns out to be the slo …
0
votes
0answers
55 views
ActiveRecord interfering with Logger
It appears that using ActiveRecord (which requires ActiveSupport) messes with the Logger class, resulting in difficulties. This can be seen with some example code:
require 'rubyg …
1
vote
2answers
126 views
java.util.Logger behaves differently when packed in different OS
I run a java program from a jar file in Linux Redhat 4.3 and use eclipse for creating the jar file from my project.
If I create the jar file when running eclipse in linux everythi …
0
votes
3answers
159 views
When, why, and what should one use a logger for?
Tell me about loggers and logging! Point me in the right direction so I can learn more.
Edit: Id like to know more about logging application events for debugging purposes.
While …
0
votes
2answers
165 views
Java Logger - “No line break” and “explicit class logging” problem
Hey everybody,
I'm currently struggling with two problems about the java.util.logging.Logger:
1) I'd like to have a (convenience-)method like the "info()/fine()" methods, only tha …
