LogEventLevel Enum
Definition
Specifies the meaning and relative importance of a log event.
public enum LogEventLevel
Fields
| Name | Description |
|---|---|
| Debug | Internal system events that aren't necessarily observable from the outside. |
| Error | Functionality is unavailable, invariants are broken or data is lost. |
| Fatal | If you have a pager, it goes off when one of these occurs. |
| Information | The lifeblood of operational intelligence - things happen. |
| Verbose | Anything and everything you might want to know about a running block of code. |
| Warning | Service is degraded or endangered. |
Debug Field
Internal system events that aren't necessarily observable from the outside.
public Avalonia.Logging.LogEventLevel Debug
Error Field
Functionality is unavailable, invariants are broken or data is lost.
public Avalonia.Logging.LogEventLevel Error
Fatal Field
If you have a pager, it goes off when one of these occurs.
public Avalonia.Logging.LogEventLevel Fatal
Information Field
The lifeblood of operational intelligence - things happen.
public Avalonia.Logging.LogEventLevel Information
Verbose Field
Anything and everything you might want to know about a running block of code.
public Avalonia.Logging.LogEventLevel Verbose
Warning Field
Service is degraded or endangered.
public Avalonia.Logging.LogEventLevel Warning