- java.lang.Object
-
- java.lang.Enum<LogLevel>
-
- tech.fastj.logging.LogLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<LogLevel>
public enum LogLevel extends Enum<LogLevel>
Abstraction overtopSLF4J's logging level enum
.- Since:
- 1.6.0
- See Also:
Level
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Debug
Level of logging used for reporting extra details during a program's execution.Error
Level of logging used for reporting errors, exceptions, and other mishaps.Info
Level of logging used for reporting general/often-needed information and statuses.Trace
Level of logging used for reporting the deepest needed details and information during a program's execution.Warn
Level of logging used for reporting suspicious/unexpected results which can cause issues.
-
Field Summary
Fields Modifier and Type Field Description org.slf4j.event.Level
slf4jLevel
The enum value's correspondingSLF4J level enum
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static LogLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Error
public static final LogLevel Error
Level of logging used for reporting errors, exceptions, and other mishaps.
-
Warn
public static final LogLevel Warn
Level of logging used for reporting suspicious/unexpected results which can cause issues.
-
Info
public static final LogLevel Info
Level of logging used for reporting general/often-needed information and statuses.
-
Debug
public static final LogLevel Debug
Level of logging used for reporting extra details during a program's execution.
-
Trace
public static final LogLevel Trace
Level of logging used for reporting the deepest needed details and information during a program's execution.
-
-
Method Detail
-
values
public static LogLevel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogLevel c : LogLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogLevel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-