LogLevel

Inheritance: java.lang.Object

public final class LogLevel

Specifies the available Log Level types. This enumeration can be used as flags to set several possible values as enabled bits Example: LogLevel.Error | LogLevel.Warning or LogLevel.Error | LogLevel.Trace

Fields

Field Description
None No logging limitation all information will be logged from trace, warning to errors
Error No logging limitation all information will be logged from trace, warning to errors
Warning Same as All level, all messages including the Trace level will be logged
Trace The logging level to include messages from the Warning to Error level
All All Log level events (Error, Warning, Trace) will be included into the logging

None

public static final int None

No logging limitation all information will be logged from trace, warning to errors

Error

public static final int Error

No logging limitation all information will be logged from trace, warning to errors

Warning

public static final int Warning

Same as All level, all messages including the Trace level will be logged

Trace

public static final int Trace

The logging level to include messages from the Warning to Error level

All

public static final int All

All Log level events (Error, Warning, Trace) will be included into the logging