LogerEnums.h 733 B

12345678910111213141516171819202122232425262728
  1. // // ******************************************************************
  2. // // /\ /| @File LogerEnums.h
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-05-16
  6. // // / \\ @Modified 2024-05-16
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #pragma once
  10. #include <cstdint>
  11. namespace Protocol
  12. {
  13. enum class LogLevel : int32_t
  14. {
  15. //关闭所有日志
  16. Close = 0,
  17. //日常-少
  18. Level1,
  19. //日常-多
  20. Level2,
  21. //调试日志
  22. LevelDebug,
  23. //开启所有日志
  24. All,
  25. };
  26. };