LogSeverity.cs 220 B

1234567891011121314
  1. using System;
  2. namespace MediaBrowser.Common.Logging
  3. {
  4. [Flags]
  5. public enum LogSeverity
  6. {
  7. None = 0,
  8. Debug = 1,
  9. Info = 2,
  10. Warning = 4,
  11. Error = 8
  12. }
  13. }