Skip to main content

Enum LogSeverity

Specifies the severity of the log message.

Assembly: Revolt.Net.Commands.dll​
View Source​
Declaration
public enum LogSeverity : int

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 = null

Error​

Logs that highlight when the flow of execution is stopped due to a failure.

View Source​
Declaration
Error = null

Warning​

Logs that highlight an abnormal activity in the flow of execution.

View Source​
Declaration
Warning = null

Info​

Logs that track the general flow of the application.

View Source​
Declaration
Info = null

Verbose​

Logs that are used for interactive investigation during development.

View Source​
Declaration
Verbose = null

Debug​

Logs that contain the most detailed messages.

View Source​
Declaration
Debug = null