Home -> ILogger -> Severity

Description

The Severity enumeration identifies the importance of an individual log message. Severity values are also used as bit values by SeverityFilter.

The logging system does not force a single policy for what each severity means to an application. The definitions below describe the intended use so log filtering remains predictable.

Members

Name Description
Public Enum Critical
Specifies a fatal condition, unrecoverable error, or condition that may immediately terminate the process.
Public Enum Error
Specifies a recoverable error where the operation failed but the application can continue running.
Public Enum Warning
Specifies an unexpected or undesirable condition that did not cause the current operation to fail.
Public Enum Info
Specifies normal informational output describing important application or system activity.
Public Enum Debug
Specifies diagnostic output intended for developers or detailed troubleshooting.
Public Enum Trace
Specifies high-volume diagnostic output used to follow fine-grained execution flow.

See also