LogLevel
Leave feedback
On this page
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
| 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 |
public static final int None
No logging limitation all information will be logged from trace, warning to errors
public static final int Error
No logging limitation all information will be logged from trace, warning to errors
public static final int Warning
Same as All level, all messages including the Trace level will be logged
public static final int Trace
The logging level to include messages from the Warning to Error level
public static final int All
All Log level events (Error, Warning, Trace) will be included into the logging
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.