aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/LogSeverity.cs
blob: 97abfe7b58d479a6b63fbf519d208c3fb2415219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace MediaBrowser.Common.Logging
{
    [Flags]
    public enum LogSeverity
    {
        None = 0,
        Debug = 1,
        Info = 2,
        Warning = 4,
        Error = 8
    }
}