jellyfin/MediaBrowser.Model/Logging/LogSeverity.cs

31 lines
552 B
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00

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
}
}