I'm using slf4j + log4j with a library of mine.
I am using it in a quick application where I don't really care about configuring the logging... or at least I didn't think I cared.
If I don't configure log4j, I get the standard warning message
log4j:WARN No appenders could be found for logger com.xyz.abcdbabble
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
which is fine. If I then do
logger.debug("Blah blah blah")
then the logger doesn't print anything out. Great!
But if I do
if (logger.isDebugEnabled())
{
System.out.println("print some complex stuff:");
print_some_complex_stuff();
}
then the stuff in brackets gets executed. What gives?
I'm looking for a way to determine whether to print out something that should have an equivalent enabling to logger.debug(), even if log4j isn't configured in the end application. How can I do this?