LogLevel

LogLevel enumeration

Specifies the available Log Level types. This enumeration can be used as flags to set several possible values as enabled bits Example: LogLevel.Error | LogLevel.Warning or LogLevel.Error | LogLevel.Trace

[Flags]
public enum LogLevel

Values

Name Value Description
None 0 No logging limitation all information will be logged from trace, warning to errors
Error 1 No logging limitation all information will be logged from trace, warning to errors
Warning 2 Same as All level, all messages including the Trace level will be logged
Trace 4 The logging level to include messages from the Warning to Error level
All 7 All Log level events (Error, Warning, Trace) will be included into the logging

See Also