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