Table of Contents

Enum LogEventLevel

Namespace
Serilog.Events
Assembly
Serilog.dll

Specifies the meaning and relative importance of a log event.

public enum LogEventLevel

Fields

Debug = 1

Internal system events that aren't necessarily observable from the outside.

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.

Information = 2

The lifeblood of operational intelligence - things happen.

Verbose = 0

Anything and everything you might want to know about a running block of code.

Warning = 3

Service is degraded or endangered.