Class Level
- java.lang.Object
-
- org.apache.commons.lang.enums.Enum
-
- de.uni_trier.wi2.procake.utils.logger.Level
-
- All Implemented Interfaces:
Serializable,Comparable
public class Level extends org.apache.commons.lang.enums.EnumThe 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
-
-
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
-
-