Class JdkLoggerFormatter


  • public class JdkLoggerFormatter
    extends java.util.logging.Formatter
    A more compact formatter. Equivalent log4j config:
      log4j.rootCategory=WARN, A1
      log4j.appender.A1=org.apache.log4j.ConsoleAppender
      log4j.appender.A1.layout=org.apache.log4j.PatternLayout
      log4j.appender.A1.Target=System.err
      log4j.appender.A1.layout.ConversionPattern=%r %-20.20c{2} %-1.1p %m %n
     
    Example: 1130122891846 Http11BaseProtocol I Initializing Coyote HTTP/1.1 on http-8800
    • Constructor Summary

      Constructors 
      Constructor Description
      JdkLoggerFormatter()
      Constructs a new JdkLoggerFormatter.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String format​(java.util.logging.LogRecord record)  
      • Methods inherited from class java.util.logging.Formatter

        formatMessage, getHead, getTail
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • LOG_LEVEL_TRACE

        public static final int LOG_LEVEL_TRACE
        Log level value for TRACE.
        See Also:
        Constant Field Values
      • LOG_LEVEL_DEBUG

        public static final int LOG_LEVEL_DEBUG
        Log level value for DEBUG.
        See Also:
        Constant Field Values
      • LOG_LEVEL_INFO

        public static final int LOG_LEVEL_INFO
        Log level value for INFO.
        See Also:
        Constant Field Values
      • LOG_LEVEL_WARN

        public static final int LOG_LEVEL_WARN
        Log level value for WARN.
        See Also:
        Constant Field Values
      • LOG_LEVEL_ERROR

        public static final int LOG_LEVEL_ERROR
        Log level value for ERROR.
        See Also:
        Constant Field Values
      • LOG_LEVEL_FATAL

        public static final int LOG_LEVEL_FATAL
        Log level value for FATAL.
        See Also:
        Constant Field Values
    • Constructor Detail

      • JdkLoggerFormatter

        public JdkLoggerFormatter()
        Constructs a new JdkLoggerFormatter.
    • Method Detail

      • format

        public java.lang.String format​(java.util.logging.LogRecord record)
        Specified by:
        format in class java.util.logging.Formatter