I am using Log4J in my application for logging. Previously I was using debug call like:
Option 1:
logger.debug("some debug text");
but some link links suggest that it is better to use debug call below mentioned way check isDebugEnabled() first, like:
Option 2:
boolean debugEnabled = logger.isDebugEnabled();
if (debugEnabled) {
logger.debug("some debug text");
}
So my question is "Does option 2 improves improve performance any way?".
Because in any case Log4J framework have same check for debugEnabled. For option 2 it might be beneficial if we are using multiple debug statement in single method or class, where the framework need does not need to call isDebugEnagble(isDebugEnabled() method multiple times (on each call), ; in this case it calls isDebugEnabled() method only once, and in case of if Log4J is configured to debug level then actually it calls isDebugEnabled() method twice, 1) in :
- In case of assigning value to debugEnabled variable, and2)
- Actually called by logger.debug() method.
I don't think so that if we write multiple logger.debug() statement in method or class and calling debug() method according to option 1 then it is overhead for Log4J framework in comparison with option 2. Because Since isDebugEnabled() is a very small method (in terms of code) and code), it might be good candidate for inlining.
Expecting views and best practices from experts.
