How to Use the Java Logging API in Apache Tomcat (Windows)

See Apache: Tips and Tricks for similar articles.

Developers and administrators alike will refer to Apache Tomcat logs from time for diagnostic and performance data. Tomcat uses a customized implementation of java.util.logging called JULI (Java Utility Logging Implementation). JULI is very similar to standard Java SE logging, even supporting the same configuration file, logging.properties. In this topic, we'll explore a way to route the Catalina logs to a specific destination and then check out the log contents.

To learn how to use the Java Logging API in Apache Tomcat for Windows for these seven steps:

  1. Stop your Tomcat server.
  2. Directly under the C: drive on your computer create a folder named logExercise.
  3. Open CATALINA_BASE/conf/logging.properties for edit. Locate the following two lines:
    1catalina.org.apache.juli.AsyncFileHandler.level = INFO  
    1catalina.org.apache.juli.AsyncFileHandler.directory = ${catalina.base}/logs	
    	
  4. Change the directory name to c:/logExercise as shown below:
    1catalina.org.apache.juli.AsyncFileHandler.level = INFO
    1catalina.org.apache.juli.AsyncFileHandler.directory = c:/logExercise  
    	
    In addition, verify that the log level is INFO as shown above. If the log level happens to be different, change it to INFO.
  5. Save your changes.
  6. Start your Tomcat server.
  7. In your text editor, open the file you see under c:/logExercise. Here is a portion of my log: Cool Garden Tools welcome page Note that the log line output contains the date, time, log level, and a message. Because of the log level of INFO, messages with a level of informational or more severe levels (e.g., WARNING) are displayed.The screen shot above shows a warning message displayed among the informational messages.