Types of message severities.
Namespace: PostSharp.Extensibility
Assembly: PostSharp.dll
Syntax
public enum SeverityType
Fields
Name | Description |
---|---|
CommandLine | Command line. |
Debug | Debugging information (typically trace). |
Error | Error. It is shown in Visual Studio's Error List under Errors. The project build fails. |
Fatal | Fatal error. It is shown in Visual Studio's Error List under Errors. The project build fails and ends immediately. |
ImportantInfo | Important information. It is shown in Visual Studio's Error List under Messages. |
Info | Information. Error messages of this severity are not shown in Visual Studio's Error List. |
None | No message. |
Verbose | Verbose (information of low importance). |
Warning | Warning. It is shown in Visual Studio's Error List under Warnings. |