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