vote up 0 vote down star

Hi, I am using a third-party library which has a log4j.xml configuration - what's the best way to turn off the logging?

flag
Are you trying remove ALL logging or just from this third party library? – James McMahon Aug 7 at 13:33
I'm trying to remove ALL logging. Everything! – Corehpf Aug 7 at 13:44

4 Answers

vote up 3 vote down check

I think all that is required is to set the threshold parameter to OFF

<log4j:configuration threshold="OFF">
    <root>
        <priority value ="off" />
        <appender-ref ref="console" />
        <appender-ref ref="rolling-file" />
    </root>
</log4j:configuration>
link|flag
vote up 4 vote down

Or directly from code:

Logger.getRootLogger().removeAllAppenders();
link|flag
vote up 2 vote down

Depends on configuration. Try something like:

<log4j:configuration>
    <root>
        <priority value ="off" />
        <appender-ref ref="console" />
        <appender-ref ref="rolling-file" />
    </root>
</log4j:configuration>

Check Log4jXmlFormat for more details.

link|flag
vote up 0 vote down

You could also try setting the logging level to "Severe" if you only want to log game-breaking events.

link|flag

Your Answer

Get an OpenID
or

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