LogLevel.cs 481 B

1234567891011121314151617181920
  1. //############################################################
  2. // https://github.com/yuzhengyang
  3. // author:yuzhengyang
  4. //############################################################
  5. using System;
  6. namespace Azylee.Core.LogUtils
  7. {
  8. [Flags]
  9. public enum LogLevel
  10. {
  11. None = 0,
  12. Verbose = 1,
  13. Debug = 2,
  14. Information = 4,
  15. Warning = 8,
  16. Error = 16,
  17. All = Verbose | Debug | Information | Warning | Error,
  18. }
  19. }