You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
552 B
31 lines
552 B
|
|
namespace MediaBrowser.Model.Logging
|
|
{
|
|
/// <summary>
|
|
/// Enum LogSeverity
|
|
/// </summary>
|
|
public enum LogSeverity
|
|
{
|
|
/// <summary>
|
|
/// The info
|
|
/// </summary>
|
|
Info,
|
|
/// <summary>
|
|
/// The debug
|
|
/// </summary>
|
|
Debug,
|
|
/// <summary>
|
|
/// The warn
|
|
/// </summary>
|
|
Warn,
|
|
/// <summary>
|
|
/// The error
|
|
/// </summary>
|
|
Error,
|
|
/// <summary>
|
|
/// The fatal
|
|
/// </summary>
|
|
Fatal
|
|
}
|
|
}
|