Enum LogLevel
Log level defines the severity of the log. Logging level is optional and depends on the provider's implementation. LoggingExtensions for the helping methods to make it easier to use.
Namespace: DevInstance.LogScope
Assembly: DevInstance.LogScope.dll
Syntax
public enum LogLevel
Fields
Name | Description |
---|---|
DEBUG | Debug |
ERROR | Only errors and exception. E(IScopeLog, Exception) |
INFO | Information (preferred by default) |
NOLOG | No messages should be written in the log. |
TRACE | All messages |
UNDEFINED | Used then log defined in logging provider configuration. |
WARNING | Warnings (including errors) |