namespace MediaBrowser.Model.Logging { /// /// Enum LogSeverity /// public enum LogSeverity { /// /// The info /// Info, /// /// The debug /// Debug, /// /// The warn /// Warn, /// /// The error /// Error, /// /// The fatal /// Fatal } }