aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Logging/LogSeverity.cs
blob: 2abab1a44875d6b7d1db4ae6d1197b3af4e46b79 (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
    }
}