namespace Packages.Rider.Editor
{
public enum LoggingLevel
{
///
/// Do not use it in logging. Only in config to disable logging.
///
OFF,
/// For errors that lead to application failure
FATAL,
/// For errors that must be shown in Exception Browser
ERROR,
/// Suspicious situations but not errors
WARN,
/// Regular level for important events
INFO,
/// Additional info for debbuging
VERBOSE,
/// Methods & callstacks tracing, more than verbose
TRACE,
}
}