I think I see my problem--

My webapp first invokes a set of classes that are located in the shared/lib classpath of Tomcat. Those classes also use commons-logging, however there is no commons-logging jar in shared/lib alongside them, My hunch is they make use of the commons-logging.jar located in Tomcat/bin directory that ships with tomcat. Then it would seem that when execution returns to my webapp, Tomcat classloading magic will just continue to use the default logging properties and not my log4j.properties file.

   I can manually make it all work just by doing

PropertyConfigurator.configure(config.getServletContext().getRealPath("/WEB-INF/classes/log4j.properties"));

at the top of my servlet, so I guess this appears to the best solution for now.

   Jason


Dennis Lundberg wrote:
I'd suggest that you take a look at the troubleshooting guide for commons-logging, especially the section on how to turn on "Diagnostic logging":

http://jakarta.apache.org/commons/logging/troubleshooting.html#Using_JCL_Diagnostics

That will show you what commons-logging is up to and where it finds its configuration.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to