Represents the severity of the log message.
public enum LogLevel
kind:method, kind:property, kind:ctor. Press Esc to clear.AllNot used for writing log messages but specifies that a logging category should log all messages.DebugLogs that are used for interactive investigation during development. These logs should primarily contain information useful for debugging and have no long-term value.ErrorLogs that highlight when the current flow of execution is stopped due to a failure. These should indicate a failure in the current activity, not an application-wide failure.FatalLogs that describe an unrecoverable application or system crash, or a catastrophic failure that requires immediate attention.InfoLogs that track the general flow of the application. These logs should have long-term value.NoneNot used for writing log messages. Specifies that a logging category should not write any messages.TraceLogs that contain the most detailed messages. These messages may contain sensitive application data. These messages are disabled by default and should never be enabled in a production environment.WarnLogs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the application execution to stop.ToCharString(LogLevel)Converts a level to its single-character representation.ToLongString(LogLevel)Converts a level to its long text representation.ToShortString(LogLevel)Converts a level to its short uppercase representation.ToTriString(LogLevel)Converts a level to its three-letter representation.