Should be logger always final and static?

11,768

Solution 1

All major java logging packages (java.util.logging, log4j, etc.) are synchronized and thread safe. The standard pattern of a private final static logger per class is fine even if the class is called from multiple threads.

Solution 2

Yes the logger should be static and final. Also preferably private. There needs be only one logger instance per class and also unless you are going to change the log preference dynamically, it is better to make it final.

Logger are thread safe and you do not have to worry about threading.

Solution 3

Making the logger final and or static will not in any way affect the thread-safety of the use of the logger. If the logger instance is being used from multiple threads than ensure you are using a thread-safe logger.

In general the logger should be private static final but do not assume that this makes it thread-safe. Most common logging frameworks are thread-safe so if you are using one of these you should be good.

Share:
11,768
user710818
Author by

user710818

Updated on June 05, 2022

Comments

  • user710818
    user710818 about 2 years

    Class can be accessed from many threads. Must be logger in this case also be final and static? Thanks.