You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
798 B

  1. using System.ComponentModel;
  2. namespace Learun.Loger
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创建人:陈彬彬
  8. /// 日 期:2017.03.04
  9. /// 描 述:日志级别
  10. /// </summary>
  11. public enum LogLevel
  12. {
  13. /// <summary>
  14. /// 错误
  15. /// </summary>
  16. [Description("错误")]
  17. Error,
  18. /// <summary>
  19. /// 警告
  20. /// </summary>
  21. [Description("警告")]
  22. Warning,
  23. /// <summary>
  24. /// 信息
  25. /// </summary>
  26. [Description("信息")]
  27. Info,
  28. /// <summary>
  29. /// 调试
  30. /// </summary>
  31. [Description("调试")]
  32. Debug
  33. }
  34. }