I am using the following approach when logging from my class:

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;    
...
private static Log log = LogFactory.getLog(MyClass.class);
...
log.debug("...");

It has come to my attention that all log statements are always executed no matter what loglevel is applied. I do not want to have debug-related statements executed when I do not need it (performance is an issue here).

So I am looking for something like this:

if (LogLevel == debug) {
   log.debug("...");
   ...
}

How can I obtain the current LogLevel being used for that class?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Each Log instance in the commons logging package can tell you if the specific level is enabled. Use this code:

if ( log.isDebugEnabled() ) 
{
    // Debug log statements
}

Check the Commons Logging JavaDoc for more information.

link|improve this answer
Thanks, exactly what I was looking for. Unsure how I could have missed that in the API. – aksamit Dec 10 '10 at 10:38
feedback

Use slf4j as the logging facade for your logging framework, since it solves the problem you mentioned by using parametrized logging for improved performance.

If you want an even faster logging framework, use Logback.

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.