LogLevelDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Defines the log level for diagnostic logging.
public enum LogLevelDto
Inheritance Object → ValueType → Enum → LogLevelDto
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| Trace | 0 | Most verbose level. Used for development and seldom enabled in production. |
| Debug | 1 | Debugging the application behavior from internal events of interest. |
| Info | 2 | Information that highlights progress or application lifetime events. |
| Warn | 3 | Warnings about validation issues or temporary failures that can be recovered. |
| Error | 4 | Errors where functionality has failed or Exception have been caught. |
| Fatal | 5 | Most critical level. Application is about to abort. |
| Off | 6 | Off log level, no logging is performed. |