Class JulLevel
- java.lang.Object
-
- java.util.logging.Level
-
- hu.icellmobilsoft.coffee.se.logging.JulLevel
-
- All Implemented Interfaces:
Serializable
public final class JulLevel extends Level
Java Util Logging level extension, to enable use of DEBUG, TRACE levels.
Based onorg.jboss.logging.JDKLevel- Since:
- 1.1.0
- Author:
- mark.petrenyi
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static JulLevelDEBUGThe JulLevel DEBUG, providing detailed informations for debugging.static JulLevelERRORThe JulLevel ERROR, indicating some errors.static JulLevelINFOThe JulLevel INFO, providing informational massages.static JulLevelTRACEThe JulLevel TRACE, providing fine grade trce information.static JulLevelWARNThe JulLevel WARN, inicating protential problems of misconfiguration.
-
-
-
Field Detail
-
ERROR
public static final JulLevel ERROR
The JulLevel ERROR, indicating some errors.
-
WARN
public static final JulLevel WARN
The JulLevel WARN, inicating protential problems of misconfiguration.
-
INFO
public static final JulLevel INFO
The JulLevel INFO, providing informational massages.
-
DEBUG
public static final JulLevel DEBUG
The JulLevel DEBUG, providing detailed informations for debugging.
-
TRACE
public static final JulLevel TRACE
The JulLevel TRACE, providing fine grade trce information.
-
-
Constructor Detail
-
JulLevel
protected JulLevel(String name, int value)
Instantiates a new Jul level.- Parameters:
name- the level namevalue- the level value
-
-