Enum LoggingLevel
- Namespace
- MonkeyLoader.Logging
- Assembly
- MonkeyLoader.dll
Represents the possible logging levels.
public enum LoggingLevel
Fields
Debug = 1Events considered to be useful during debugging when more granular information is needed.
Error = -2One or more functionalities are not working, preventing some from working correctly.
Fatal = -3One or more key functionalities, or the whole system isn't working.
Info = 0Something happened, which is purely informative and can be ignored during normal use.
Trace = 2Step by step execution of code that can be ignored during standard operation, but may be useful during extended debugging sessions.
Warn = -1Unexpected behavior happened, but work is continuing and the key functionalities are operating as expected.