LogLevel Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Logging severity levels.
public enum class LogLevel
public enum LogLevel
type LogLevel =
Public Enum LogLevel
- Inheritance
-
LogLevel
Fields
Name | Value | Description |
---|---|---|
None | 0 | Used to disable logging. |
Error | 1 | The log message represents an error. |
Warning | 2 | The log message represents a warning. |
Information | 3 | The log message represents somewhat important information. |
Debug | 4 | The log message represents verbose information typically only useful for debugging. |
Count | 5 | internal |