Click or drag to resize

LogLevel Enumeration

Specifies the meaning and relative importance of a log event.

Namespace:  Opait.Api
Assembly:  Opait.Core (in Opait.Core.dll) Version: 1.3.3.0
Syntax
C#
public enum LogLevel
Members
  Member nameValueDescription
Verbose0 The noisiest level, rarely (if ever) enabled for a production application.
Debug1 Internal system events that are not necessarily observable from the outside, but useful when determining how something happened.
Information2 Things happening in the system that correspond to its responsibilities and functions. Generally these are the observable actions the system can perform.
Warning3 Service is degraded, endangered, or may be behaving outside of its expected parameters.
Error4 Functionality is unavailable, invariants are broken or data is lost.
Fatal5 The most critical level, demanding immediate attention.
See Also