I am using Java util Logger. According to the documentation for Logger.getLogger method, it says, "Find or create a logger for a named subsystem. If a logger has already been created with the given name it is returned. Otherwise a new logger is created.". Would there still be any benefit in calling it only once per class?

Option 1:

public class myclass 
    static Logger logger = Logger.getLogger(myclass.class);

    public void method1() {
        logger.log(...);
    }

    public void method2() {
        logger.log(....);
    }
}

Option 2:

public class myclass {
    public void method1() {
        Logger.getLogger(myclass.class).log(...);
    }

    public void method2() {
        Logger.getLogger(myclass.class).log(...);
    }
}
link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

There are two not-very-important reasons why having a single static (probably final) instance is better than calling getLogger all the time.

  1. It makes the code slightly easier to read (in my opinion).
  2. There is a very small performance penalty you pay if you call Logger.getLogger all the time. It's not something to worry about unless you are calling it millions of times in a tight loop, but it's there.

That said, personal preference is vastly more important than either of these reasons. Option 1 is a common approach, but if you prefer option 2 then by all means use it. It's not going to hurt your code.

link|improve this answer
@Op De Cirkel's answer does highlight the issue of making the logger static - in most cases it's fine, but if you're writing library code then you could consider making it non-static. You get a per-instantiation cost of making the call to Logger.getLogger but that's going to be negligible. – Cameron Skinner Jun 6 '11 at 5:04
feedback

Read these articles:
http://wiki.apache.org/jakarta-commons/Logging/StaticLog
http://www.slf4j.org/faq.html#declared_static

link|improve this answer
1  
-1 sorry, but this is not answer. Maybe one could find it in your links. If that's the case provide a summary/explanation. – Grzegorz Oledzki Jun 3 '11 at 4:04
1  
Some questions do not have short answer. As i understand stackoverflow is not only for summaries, but for solving programmers problems. – Op De Cirkel Jun 3 '11 at 4:22
feedback

They only benefit I see is that shorter log lines make code look clearer. But - in practice there is no difference at runtime

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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