Enum LogEventLevel
Defines the levels of logging events.
public enum LogEventLevel
Fields
Debug = 1Log events that are useful for debugging purposes.
Error = 4Log events that indicate a serious error or a failure that requires immediate attention.
Info = 2Log events that provide general information about the application's operation.
None = 5No log events.
Trace = 0The most detailed log events.
Warn = 3Log events that indicate a potential problem or a non-critical error.