LoggerMessageCategory 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.
The severity level of a message logged by ILogger.
public enum class LoggerMessageCategory
public enum class LoggerMessageCategory
enum LoggerMessageCategory
public enum LoggerMessageCategory
type LoggerMessageCategory =
Public Enum LoggerMessageCategory
- Inheritance
-
LoggerMessageCategory
Fields
Name | Value | Description |
---|---|---|
Information | 0 | The message can be shown to the user and is just for information. It is shown in the Output window and in the progress dialog. |
Debug | 1 | The message is only to be used to help debug the application. It is shown only in the Output window. |
Warning | 2 | Something non-critical went wrong or the user should be aware of a possible issue, but the operation can continue. It is shown in the Output window and in the progress dialog. |
Error | 3 | Something went wrong and the operation can not continue. It is shown in the Output window and in the progress dialog. |