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