SessionLogLevel 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.
Defines logging severity levels.
public enum class SessionLogLevel
public enum SessionLogLevel
type SessionLogLevel =
Public Enum SessionLogLevel
- Inheritance
-
SessionLogLevel
Fields
Name | Value | Description |
---|---|---|
None | 0 | Specifies that logging should not write any messages. |
Error | 1 | Specifies logs that indicate when the current flow of execution stops due to a failure. |
Warning | 2 | Specifies logs that highlight an abnormal or unexpected event, but do not otherwise cause execution to stop. |
Information | 3 | Specifies logs that track the general flow. |
Debug | 4 | Specifies logs used for interactive investigation during development. |
All | 5 | Specifies all messages should be logged. |