Changes between Initial Version and Version 1 of Tomcat HowTo Get More Information from Logging


Ignore:
Timestamp:
06/17/16 09:05:29 (8 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Tomcat HowTo Get More Information from Logging

    v1 v1  
     1= Tomcat HowTo Get More Information from Logging
     2
     3Tags: [[HowTo]]
     4
     5/Originally from [[http://blog.trifork.com/2011/03/18/debugging-the-dreaded-severe-error-listenerstart-and-severe-error-filterstart-tomcat-error-messages/]], which refers to getting more information about listener start errors, but I think it should apply to all error logging.
     6
     7== Process
     8
     91. Create a file `logging.properties` in the `WEB-INF/classes` directory in Tomcat.
     102. In the file paste the following text:
     11
     12{{{
     13#!ini
     14org.apache.catalina.core.ContainerBase.[Catalina].level = INFO
     15org.apache.catalina.core.ContainerBase.[Catalina].handlers = java.util.logging.ConsoleHandler
     16}}}
     17
     18
     19[[BackLinks]]