14 lines
221 B
C#
14 lines
221 B
C#
using System;
|
||
|
||
namespace MediaBrowser.Common.Logging
|
||
{
|
||
[Flags]
|
||
public enum LogSeverity
|
||
{
|
||
None = 0,
|
||
Debug = 1,
|
||
Info = 2,
|
||
Warning = 4,
|
||
Error = 8
|
||
}
|
||
} |