Enum LogLevel
Defines logging severity levels.
public enum LogLevel : byte
Fields
Debug = 1
Logs that are used for interactive investigation during development.
Error = 4
Logs that highlight when the current flow of execution is stopped due to a failure
Information = 2
Logs that track the general flow of the application.
None = 255
Specifies that a logging category should not write any messages.
Trace = 0
Logs that contain the most detailed messages.
Warning = 3
Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop.