LogEventLevel Enumeration
Specifies the meaning and relative importance of a log event.
Definition
Namespace: Avalonia.Logging
Assembly: Avalonia.Base (in Avalonia.Base.dll)
- C#
- VB
- F#
public enum LogEventLevel
Public Enumeration LogEventLevel
type LogEventLevel
Members
Verbose | 0 | Anything and everything you might want to know about a running block of code. |
Debug | 1 | Internal system events that aren't necessarily observable from the outside. |
Information | 2 | The lifeblood of operational intelligence - things happen. |
Warning | 3 | Service is degraded or endangered. |
Error | 4 | Functionality is unavailable, invariants are broken or data is lost. |
Fatal | 5 | If you have a pager, it goes off when one of these occurs. |