Class Level

  • All Implemented Interfaces:
    Serializable, Comparable

    public class Level
    extends org.apache.commons.lang.enums.Enum
    The Level class defines a set of standard logging levels that can be used to control logging output. The logging Level objects are ordered thus enabling logging at a given level also enables logging at all higher levels.

    The levels in descending order are:

    It is NOT possible to define additional logging levels.

    Author:
    Rainer Maximini
    See Also:
    Serialized Form
    • Method Summary

      • Methods inherited from class org.apache.commons.lang.enums.Enum

        compareTo, equals, getEnum, getEnumClass, getEnumList, getEnumMap, getName, hashCode, iterator, readResolve, toString
    • Field Detail

      • Trace

        public static final Level Trace
        Used for internal reasearch output. Be sure to staticly switch these Log-statements with a DEBUG-flag so that the log-statements dont get into the release-version.
      • Debug

        public static final Level Debug
      • Error

        public static final Level Error
      • Fatal

        public static final Level Fatal
      • Info

        public static final Level Info
      • Warn

        public static final Level Warn