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