Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Should logger be declared static or not? Usually I've seen two types of declaration for a logger :

    protected Log log = new Log4JLogger(aClass.class);

or

    private static Log log = new Log4JLogger(aClass.class);

Which one should be used? what are the pro's and con's of both?

Thank you.

share|improve this question
1  
Logging is a cross-cutting concern. Use Aspects and the question is moot. – Dave Jarvis Oct 3 '10 at 5:26
static is one reference per class. non-static is one reference per instance (+ initialization). So in some cases, the latter comes at a significant memory impact if you have tons of instances. Never use the non-static in a frequent object. I always use the static version. (which should be uppercased LOG) – Anony-Mousse Sep 5 '12 at 8:43
you can get rid of this variable at all if you use jcabi-log, a static wrapper around slf4j – yegor256 Oct 5 '12 at 7:19
as suggested already, use AOP and annotations, for example: jcabi.com/jcabi-aspects/annotation-loggable.html – yegor256 Feb 5 at 11:26

6 Answers

up vote 25 down vote accepted

The advantage of the non-static form is that you can declare it in an (abstract) base class like follows without worrying that the right classname will be used:

protected Log log = new Log4JLogger(getClass());

However its disadvantage is obviously that a whole new logger instance will be created for every instance of the class. This may not per se be expensive, but it adds a significant overhead. If you'd like to avoid this, you'd like to use the static form instead. But its disadvantage is in turn that you have to declare it in every individual class and take care in every class that the right classname is been used during logger's construction because getClass() cannot be used in static context. However, in the average IDE you can create an autocomplete template for this. E.g. logger + ctrl+space.

On the other hand, if you obtain the logger by a factory which in turn may cache the already-instantiated loggers, then using the non-static form won't add that much overhead. Log4j for example has a LogManager for this purpose.

protected Log log = LogManager.getLogger(getClass());
share|improve this answer
Declare abstract Log getLogger(); in the abstract class. Implement this method, returning the static logger for the particular instance. Add private final static Log LOG = LogManager.getLogger(Clazz.class); to your IDE class template. – Anony-Mousse Sep 5 '12 at 8:45

I used to think that all loggers should be static; however, this article at wiki.apache.org brings up some important memory concerns, regarding classloader leaks. Declaring a logger as static prevents the declaring class (and associated classloaders) from being garbage collected in J2EE containers that use a shared classloader. This will result in PermGen errors if you redeploy your application enough times.

I don't really see any way to work around this classloader leak issue, other than declaring loggers as non-static.

share|improve this answer

The most important difference is how it affects your log files: in which category do logs go?

  • In your first choice, the logs of a subclass end up in the category of the superclass. That seem very counter-intuitive to me.
  • There is a variant of your first case:

    protected Log log = new Log4JLogger(getClass());

    In that case, your log category says which object the code that logged was working on.

  • In your second choice (private static), the log category is the class that contains the logging code. So normally the class that is doing the thing that is being logged.

I would strongly recommend that last option. It has these advantages, compared to the other solutions:

  • There is a direct relation between the log and the code. It is easy to find back where a log message came from.
  • If someone has to tune logging levels (which is done per category), it is usually because they are interested (or not) in some particular messages, written by a particular class. If the category is not the class that is writing the messages, it is harder to tune the levels.
  • You can log in static methods
  • Loggers only need to be initialized (or looked up) once per class, so at startup, instead of for every instance created.

It also has disadvantages:

  • It needs to be declared in every class where you log messages (no reuse of superclass loggers).
  • You need to take care to put the right classname when initializing the logger. (But good IDE's take care of that for you).
share|improve this answer

I would stick with private, and static for sure. If you opt for protected, the same logger is used for all your subclasses, too (or you have the parent's logger hidden by a child's logger of the same name). With private, you get a different logger for each class, and that gives you finer granularity for enabling logging. That's a good thing.

share|improve this answer

Use inversion of control and pass the logger into the constructor. If you create the logger inside the class you are going to have a devil of a time with your unit tests. You are writing unit tests aren't you?

share|improve this answer

Usually we always use static loggers. This is the way a logger to be used. As you see in all of the popular logging API like log4j provide a way to add threadlocal info to log entries like sessionid, threadid and so on (it is called MDC). So the API itself tells you to use static logger. Your problem is mainly that you do not want to write things like this:

public class A
{
      private static logger = new Logger( A.class );
}

Since writing classname everywhere is boring and not copy-paste safe. The solution is simply call something gives back the stack, and simply pick the first item to get the caller class. Thread.currentThread().getStackTrace() gives back the trace. Then you will get the standard "copyandpasteable" line, that can be put everywhere. It can be even an extra method in a childclass of standard logger class like this: MyLogger.getDefaultLogger().

EDIT: I removed the exception creation, and I added the Thread.getStackTrace(). However I still think, that doing this once per class is better than copy pasting errors.

share|improve this answer
hmm. Downvote? Interesting. Why? – Gábor Lipták Feb 28 '12 at 19:57
You're talking about copy and paste safety?? Then telling people to use an exception to get the calling class? Talk about wasteful. This is a massive code smell. – LightGuard Apr 29 '12 at 6:10
Doing it once for a class (since the logger is static) is not code smell I think. I would never do this in often running code. On the other hand LightGuard, what is your opinion, how can for example Log4j print the name of the method into the log? Yes. It uses stacktraces, and yes it is written in the documentation, that it has overhead (logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/… see at "M" in the pattern). org.apache.log4j.spi.LocationInfo method does it. Take a look at it. So I am sorry, I don't share your opinion, that its a code smell. – Gábor Lipták Apr 29 '12 at 20:25
I don't typically use static loggers. In web apps, what I've mostly been doing, the objects don't live long and a static logger will leak memory. To do what you're talking about I'd either just write it or copy it and use PMD on the build to make sure the c&p was detected. At the least, you'll find the c&p error while looking at a mixture of logging and stak traces. – LightGuard Apr 30 '12 at 20:21
I don't understand this sentence: "In web apps, what I've mostly been doing, the objects don't live long and a static logger will leak memory." Having a static logger is not instance level thing, but class level. You will have several loggers only if you have several classloaders. I did not have any leak ever related to logging in 8 years with out of the box loggers. Once we had one with a custom adapter, but that does not count :) The PMD is nice idea, really worth mentioning. It makes sense if it is a kind of automated build otherwise you cannot really force people to use that. – Gábor Lipták May 1 '12 at 20:12
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.