LogLevel.cs 297 B

1234567891011121314151617
  1. using System;
  2. namespace BepInEx.Logging
  3. {
  4. [Flags]
  5. public enum LogLevel
  6. {
  7. None = 0,
  8. Fatal = 1,
  9. Error = 2,
  10. Warning = 4,
  11. Message = 8,
  12. Info = 16,
  13. Debug = 32,
  14. All = Fatal | Error | Warning | Message | Info | Debug
  15. }
  16. }