Enum LogSeverity
- Namespace
- Discord
- Assembly
- Discord.Net.Core.dll
Specifies the severity of the log message.
public enum LogSeverity
Fields
Critical = 0Logs that contain the most severe level of error. This type of error indicate that immediate attention may be required.
Debug = 5Logs that contain the most detailed messages.
Error = 1Logs that highlight when the flow of execution is stopped due to a failure.
Info = 3Logs that track the general flow of the application.
Verbose = 4Logs that are used for interactive investigation during development.
Warning = 2Logs that highlight an abnormal activity in the flow of execution.