Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Situation: I have this log4j logger:

private static final Logger logger = Logger.getLogger(ThisClassName.class);

And am trying to set it programatically through:

Logger.getLogger(ThisClassName.class).setLevel(Level.DEBUG);

Still, DEBUG level prints are swalloed (while INFO prints are printed successfully).

Even this bit has no effect: Logger.getRootLogger().setLevel(Level.DEBUG);

Calling logger.debug("foo") reaches Category.forcedLog() and ConsoleAppender.doAppend(), and then fails (quits) at:

if(!isAsSevereAsThreshold(event.getLevel()))

Any idea why this is happening?

share|improve this question
Do you have a configuration file somewhere whose value could be conflicting with your programmatic settings? – justkt Jan 4 '11 at 14:42
@justky - I looked through all 8 log4j.properties files scattered around our project, and none of them has a level on any appender. – ripper234 Jan 5 '11 at 12:49

1 Answer

up vote 1 down vote accepted

Your appender is configured with a threshold greater than debug, so while the logger doesn't ignore the entries, your appender doesn't record it. You need to configure the threshold of your ConsoleAppender to be DEBUG as well, either through your config file or programatically:

((ConsoleAppender)someLogger.getAppender("CONSOLE")).setThreshold(Level.DEBUG);

Config files are usually the more elegant solution for this sort of thing.

Edit: Note that apparently, any subclass of AppenderSkeleton (including ConsoleAppender) shouldn't have a threshold filter set by default. So it's likely that somewhere in your configuration you're actually manually assigning a threshold ( > Debug) to that appender, as @justkt hints.

share|improve this answer
1  
The config file may be one that comes with an application server (JBoss, for example, defaults to INFO) and not one that the OP set up him/herself. It's wise to look around for him/her to verify. – justkt Jan 4 '11 at 15:13
I'm running this as a standlone java class (from IntelliJ actually). See my comment on the question - I haven't found a bad appender config in log4j.properties files. Setting the threshold did work (I did it on the root logger) – ripper234 Jan 5 '11 at 12:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.