vote up 0 vote down star
1

My servlet-based web-app sometimes fails to close Log4j log files when redeployed, leaking to file descriptor leakage and occassionally leading to servlet-contained dying from 'too many open files'.

I have a ContextListener, what should I put into its contextDestroyed() to tell log4j to shut down and release all resources?

Quick skim over javadocs revealed Hierachery class with shutdown() method. I have no idea on how to actually get the current Hierachery, and the javadoc states this class has no user-serviceable components inside :)

flag

1 Answer

vote up 1 vote down check

Try this:

org.apache.log4j.LogManager.shutdown();

However, the problem you are experiencing is strange and shouldn't be happening. What JVM, container, log4j version are you using?

link|flag
I'm using Sun's JVM6, Resin and log4j 1.2.14 I guess it sometimes leaks classloaders and prevents them from recycling (finalizing), I've not figured it out yet. Thanks for hint! – alamar May 8 at 11:04

Your Answer

Get an OpenID
or

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