LogEventLevel Enumeration |
Represents the severity of a message written to the
ILogger
Namespace:
Crosser.Common.Logging
Assembly:
Crosser.Common (in Crosser.Common.dll) Version: 0.0.4
Syntax public enum LogEventLevel
Members
| Member name | Value | Description |
---|
| Verbose | 0 |
tracing information and debugging minutiae; generally only switched on in unusual situations
|
| Debug | 1 |
internal control flow and diagnostic state dumps to facilitate pinpointing of recognised problems
|
| Information | 2 |
events of interest or that have relevance to outside observers; the default enabled minimum logging level
|
| Warning | 3 |
indicators of possible issues or service/functionality degradation
|
| Error | 4 |
indicating a failure within the application or connected system
|
| Fatal | 5 |
critical errors causing complete failure of the application
|
See Also