Enum LogLevel
- Namespace
- Whim
- Assembly
- Whim.dll
The log levels available to Logger.
public enum LogLevel
Fields
Debug = 1- Describes internal system events not observable from the outside. Useful for debugging.
Error = 4- When something is unavailable or expectations broken.
Fatal = 5- Something which demands immediate attention. The highest log level.
Information = 2- Events which correspond to its responsibilities and functions. Generally observable actions the system can perform.
Verbose = 0- The lowest and noisiest log level.
Warning = 3- When the system is performing outside of its expected parameters, is degraded or endangered.