Table of Contents

Enum LoggingLevel

Namespace
MonkeyLoader.Logging
Assembly
MonkeyLoader.dll

Represents the possible logging levels.

public enum LoggingLevel

Fields

Debug = 1

Events considered to be useful during debugging when more granular information is needed.

Error = -2

One or more functionalities are not working, preventing some from working correctly.

Fatal = -3

One or more key functionalities, or the whole system isn't working.

Info = 0

Something happened, which is purely informative and can be ignored during normal use.

Trace = 2

Step by step execution of code that can be ignored during standard operation, but may be useful during extended debugging sessions.

Warn = -1

Unexpected behavior happened, but work is continuing and the key functionalities are operating as expected.