Serializable
, Comparable<System.Logger.Level>
, Constable
System.Logger
public static enum System.Logger.Level extends Enum<System.Logger.Level>
ALL
, TRACE
, DEBUG
, INFO
, WARNING
, ERROR
, OFF
, by order of increasing severity. ALL
and OFF
are simple markers with severities mapped respectively to Integer.MIN_VALUE
and Integer.MAX_VALUE
. Severity values and Mapping to java.util.logging.Level
.
System logger levels are mapped to java.util.logging levels of corresponding severity.
The mapping is as follows:
System.Logger Levels | java.util.logging Levels |
---|---|
ALL | ALL |
TRACE | FINER |
DEBUG | FINE |
INFO | INFO |
WARNING | WARNING |
ERROR | SEVERE |
OFF | OFF |
Enum.EnumDesc<E extends Enum<E>>
Enum Constant | Description |
---|---|
ALL |
A marker to indicate that all levels are enabled. |
DEBUG |
DEBUG level: usually used to log debug information traces. |
ERROR |
ERROR level: usually used to log error messages. |
INFO |
INFO level: usually used to log information messages. |
OFF |
A marker to indicate that all levels are disabled. |
TRACE |
TRACE level: usually used to log diagnostic information. |
WARNING |
WARNING level: usually used to log warning messages. |
Modifier and Type | Method | Description |
---|---|---|
final String |
getName() |
Returns the name of this level. |
final int |
getSeverity() |
Returns the severity of this level. |
static System.Logger.Level |
valueOf |
Returns the enum constant of this class with the specified name. |
static System.Logger.Level[] |
values() |
Returns an array containing the constants of this enum class, in the order they are declared. |
public static final System.Logger.Level ALL
Integer.MIN_VALUE
.public static final System.Logger.Level TRACE
public static final System.Logger.Level DEBUG
public static final System.Logger.Level INFO
public static final System.Logger.Level WARNING
public static final System.Logger.Level ERROR
public static final System.Logger.Level OFF
Integer.MAX_VALUE
.public static System.Logger.Level[] values()
public static System.Logger.Level valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is nullpublic final String getName()
public final int getSeverity()
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/System.Logger.Level.html