enum LogVerbosity
Represents verbosity level at which a specific log message will be displayed.
Values
| Name | Value | Description |
|---|---|---|
Fatal |
0 |
Fatal error happened that application cannot recover from and will crash. |
Error |
1 |
An error happened that will not result in an immediate crash but may cause serious problems. |
Warning |
2 |
Something went wrong but the application will not crash, although invalid behaviour might be observed. |
Info |
3 |
An informational message will be logged, can be used for debugging and tracing. |
Log |
4 |
Same as Info, but the message will only be logged to the log file and not any console output. |
Verbose |
5 |
Messages that can provide additional information and warnings, but are too spammy to be displayed under normal circumstances. |
VeryVerbose |
6 |
Same as Verbose, but for even spammier messages. |
Any |
7 |
Meta-type encompassing all verbosity types. |