LogLevel enum

Indicates the severity of a log message. Log Levels are ordered in increasing severity. So Debug is more severe than Trace, etc.

Fields

Trace = 0

Log level for very low severity diagnostic messages.

Debug = 1

Log level for low severity diagnostic messages.

Information = 2

Log level for informational diagnostic messages.

Warning = 3

Log level for diagnostic messages that indicate a non-fatal problem.

Error = 4

Log level for diagnostic messages that indicate a failure in the current operation.

Critical = 5

Log level for diagnostic messages that indicate a failure that will terminate the entire application.

None = 6

The highest possible log level. Used when configuring logging to indicate that no log messages should be emitted.