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