aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Logging/LogSeverity.cs
blob: ae0487289441ee87ed00def37c7f9943de1a65e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace MediaBrowser.Model.Logging
{
    /// <summary>
    /// Enum LogSeverity
    /// </summary>
    public enum LogSeverity
    {
        /// <summary>
        /// The info
        /// </summary>
        Info,
        /// <summary>
        /// The debug
        /// </summary>
        Debug,
        /// <summary>
        /// The warn
        /// </summary>
        Warn,
        /// <summary>
        /// The error
        /// </summary>
        Error,
        /// <summary>
        /// The fatal
        /// </summary>
        Fatal
    }
}