LogLevel.cs 616 B

12345678910111213141516171819202122
  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. All = Verbose | Debug | Information | Warning | Error,
  20. }
  21. }