LogLevel.cs 650 B

1234567891011121314151617181920212223
  1. //************************************************************************
  2. // author: yuzhengyang
  3. // date: 2018.3.27 - 2018.6.3
  4. // desc: 工具描述
  5. // Copyright (c) yuzhengyang. All rights reserved.
  6. //************************************************************************
  7. using System;
  8. namespace Azylee.Core.LogUtils.SimpleLogUtils
  9. {
  10. [Flags]
  11. public enum LogLevel
  12. {
  13. None = 0,
  14. Verbose = 1,
  15. Debug = 2,
  16. Information = 4,
  17. Warning = 8,
  18. Error = 16,
  19. Colorful = 32,
  20. All = Verbose | Debug | Information | Warning | Error | Colorful,
  21. }
  22. }