Enum LogLevel
Specifies the log
level for a particular log
message.
The enum base type is
int
.
Enum members
Name | Description |
---|---|
critical | Error that severely influences the execution of the application |
Critical | deprecated |
Debug | deprecated |
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 |
Error | deprecated |
fatal | Error that forces the application to terminate |
info | Informational message for normal user education |
Info | deprecated |
none | Special value used to indicate no logging when set as the minimum log level |
None | deprecated |
trace | Developer information for locating events when no useful stack traces are available |
Trace | deprecated |
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 count indicate an error but has no direct consequences |
Warn | deprecated |
Authors
Sönke Ludwig
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.