Enum LogLevel
Describes the severity of a logging message.
Namespace: Snowflake.Extensibility
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public enum LogLevel
Fields
Name | Description |
---|---|
Debug | The DEBUG Level designates fine-grained informational events that are most useful to debug an application. |
Error | The ERROR level designates error events that might still allow the application to continue running. |
Fatal | The FATAL level designates very severe error events that will presumably lead the application to abort. |
Info | The INFO level designates informational messages that highlight the progress of the application at coarse-grained level. |
Trace | The TRACE Level designates finer-grained informational events than the DEBUG |
Warn | The WARN level designates potentially harmful situations. |