> From: Dan Armbrust [mailto:[email protected]] > Subject: RE: How to debug Error: listenerStart? > > Any thoughts on if this is a bug, a specific problem with > my tomcat installation, or a design decision that I don't > agree with?
If you really do want to see all log message pertaining to your webapp on the console, add this to conf/logging.properties: org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/foo].level = INFO org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/foo].handlers = 1catalina.org.apache.juli.FileHandler, java.util.logging.ConsoleHandler Change the logging level to whatever you need, and the app name (/foo, above) to the app of interest. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
