public final class LogLevel extends Object
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
| Modifier and Type | Field and Description |
|---|---|
static int |
All
All Log level events (Error, Warning, Trace) will be included into the logging
|
static int |
Error
No logging limitation all information will be logged from trace, warning to errors
|
static int |
None
No logging limitation all information will be logged from trace, warning to errors
|
static int |
Trace
The logging level to include messages from the Warning to Error level
|
static int |
Warning
Same as All level, all messages including the Trace level will be logged
|
public static final int All
All Log level events (Error, Warning, Trace) will be included into the logging
public static final int Error
No logging limitation all information will be logged from trace, warning to errors
public static final int None
No logging limitation all information will be logged from trace, warning to errors
public static final int Trace
The logging level to include messages from the Warning to Error level
public static final int Warning
Same as All level, all messages including the Trace level will be logged
Copyright © 2024. All rights reserved.