Package elki.logging
Class Logging.Level
- java.lang.Object
-
- java.util.logging.Level
-
- elki.logging.Logging.Level
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Logging
public static class Logging.Level extends java.util.logging.Level
Logging Level class.- Author:
- Erich Schubert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version.static Logging.Level
STATISTICS
Additional level for logging: statistics and timing information.static java.util.logging.Level
VERBOSE
Alias for the "INFO" logging level: "verbose".static Logging.Level
VERYVERBOSE
Additional level for logging: additional verbose messages.
-
Constructor Summary
Constructors Constructor Description Level(java.lang.String name, int value)
Constructor.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.logging.Level
parse(java.lang.String levelName)
Parse a logging level.
-
-
-
Field Detail
-
STATISTICS
public static final Logging.Level STATISTICS
Additional level for logging: statistics and timing information. Inbetween of "verbose" and "warning".
-
VERBOSE
public static final java.util.logging.Level VERBOSE
Alias for the "INFO" logging level: "verbose".
-
VERYVERBOSE
public static final Logging.Level VERYVERBOSE
Additional level for logging: additional verbose messages. Inbetween of "verbose" and "config", usually 750.
-
serialVersionUID
private static final long serialVersionUID
Serial version.- See Also:
- Constant Field Values
-
-