Enum LogLevels
Log level for the log, default(LogLevel) gives None which doesn't log anything LogLevels.None is actually checked internally, before IsLogLevelEnabled.
Namespace:Dapplo.Log
Assembly:Dapplo.Log.dll
Syntax
public enum LogLevels
Fields
| Name | Description |
|---|---|
| Debug | Debugging information, usually needed when troubleshooting |
| Error | Used for logging real errors |
| Fatal | Used for unrecoverable problems |
| Info | Informational logging |
| None | Default, no logging |
| Verbose | Verbose logs pretty much everything |
| Warn | Warn that something didn't went well |