| LogLevel Enumeration |
Specifies the meaning and relative importance of a log event.
Namespace:
Opait.Api
Assembly:
Opait.Core (in Opait.Core.dll) Version: 1.3.3.0
Syntax Members
| Member name | Value | Description |
---|
| Verbose | 0 |
The noisiest level, rarely (if ever) enabled for a production application.
|
| Debug | 1 |
Internal system events that are not necessarily observable from the outside,
but useful when determining how something happened.
|
| Information | 2 |
Things happening in the system that correspond to its responsibilities and functions.
Generally these are the observable actions the system can perform.
|
| Warning | 3 |
Service is degraded, endangered, or may be behaving outside of its expected parameters.
|
| Error | 4 |
Functionality is unavailable, invariants are broken or data is lost.
|
| Fatal | 5 |
The most critical level, demanding immediate attention.
|
See Also