jellyfin/MediaBrowser.Common/Logging/LogSeverity.cs

15 lines
220 B
C#
Raw Normal View History

2012-07-12 08:55:27 +02:00
using System;
namespace MediaBrowser.Common.Logging
2012-07-12 08:55:27 +02:00
{
[Flags]
public enum LogSeverity
{
None = 0,
Debug = 1,
Info = 2,
Warning = 4,
Error = 8
}
}