Skip to main content

LogEventLevel Enum

Definition

Assembly:Avalonia.Base
Package:Avalonia

Specifies the meaning and relative importance of a log event.

public enum LogEventLevel

Inheritance: Enum -> LogEventLevel

Fields

NameDescription
DebugInternal system events that aren't necessarily observable from the outside.
ErrorFunctionality is unavailable, invariants are broken or data is lost.
FatalIf you have a pager, it goes off when one of these occurs.
InformationThe lifeblood of operational intelligence - things happen.
VerboseAnything and everything you might want to know about a running block of code.
WarningService 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