show/hide this revision's text 2 deleted 76 characters in body; edited tags; edited title

Is In log4jisDebugEnabled , does checking improves perfromance isDebugEnabled before logging improve performance?

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 :

  1. In case of assigning value to debugEnabled variable, and2)
  2. 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.

show/hide this revision's text 1

Is log4j isDebugEnabled checking improves perfromance ?

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 suggest that it is better to use debug call below mentioned way :

Option 2:

boolean debugEnabled = logger.isDebugEnabled();
if (debugEnabled) {
    logger.debug("some debug text");
}

So my question is "Does option 2 improves 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 framework need not to call isDebugEnagble() 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 case of assigning value to debugEnabled variable and 2) Actually called by logger.debug() method.

I don't think so 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 isDebugEnabled() is very small method (in terms of code) and might be good candidate for inlining.

Expecting views and best practices from experts.