Enum LogLevel
Specifies the log level for a particular log message.
enum LogLevel
: int { ... }
Enum members
Name | Description |
---|---|
critical
|
Error that severely influences the execution of the application |
debug_
|
Developer information useful for algorithm debugging |
debugV
|
Developer information useful for algorithm debugging - for verbose output |
diagnostic
|
Extended user information (e.g. for more detailed error information) |
error
|
Normal error that is handled gracefully |
fatal
|
Error that forces the application to terminate |
info
|
Informational message for normal user education |
none
|
Special value used to indicate no logging when set as the minimum log level |
trace
|
Developer information for locating events when no useful stack traces are available |
verbose1
|
Alias for diagnostic messages |
verbose2
|
Alias for debug messages |
verbose3
|
Alias for verbose debug messages |
verbose4
|
Alias for trace messages |
warn
|
Unexpected condition that could indicate an error but has no direct consequences |