Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customizing log format in logging.properties

I need some direction in configuring the log format in Tomcat 7. I am relatively new at logging configurations so please excuse humor this questions if it seems a bit basic...

Using the standard logging in Tomcat configured in logging.properties displays a log in the format of:

Jun 6, 2011 9:27:00 AM com.class.Control_WS callWebService 
INFO: Response received from Control_WS:[Y]

I would like to customize these logs to compress on to one line as well as expanding the date format to include milliseconds.

Example:

[2011-05-04T11:37:00.037|INFO|javax.enterprise.system.stream.out|Response recieved from Control_WS:[Y]]

Is that something I can do using the JUL or do I need to switch to LOG4J?

Any simple examples that can be provided or direction would be much appreciated.

like image 499
cmutt78 Avatar asked Jun 06 '11 16:06

cmutt78


2 Answers

If you are using Java 7 (or later :-)) you no longer have to create a custom formatter class for java.util.logging (JUL). In Java 7 there's a new property, java.util.logging.SimpleFormatter.format, which controls how JUL's SimpleFormatter prints the information. So as long as you are using SimpleFormatter (which is the default anyway) then this will work.

Some pitfalls:

  • Be sure to actually use Java 7. :-)
  • Be sure to use a valid format string. JUL will revert silently to the default format (the standard ugly two-liner) if the format you provide is invalid.
like image 54
peterh Avatar answered Oct 21 '22 07:10

peterh


It looks like you would do this by creating a custom class that extends Formatter and then specify it in your logging.properties as the formatter for your handler. For example, if you are using a ConsoleHandler you would use this:

java.util.logging.ConsoleHandler.formatter = com.mycompany.MyFormatter

Then place the class file (either by itself, or inside a jar) somewhere in the classpath of tomcat. I would create a jar with it in there and then put that jar in ${catalina.home}/lib/ext

like image 31
Lucas Avatar answered Oct 21 '22 08:10

Lucas