// // ****************************************************************** // // /\ /| @File LogerEnums.h // // \ V/ @Brief // // | "") @Author lijinwen, ghz005@uni-trend.com.cn // // / | @Creation 2024-05-16 // // / \\ @Modified 2024-06-24 // // *(__\_\ // // ****************************************************************** #pragma once #include namespace Protocol { enum class LogLevel : int32_t { //关闭所有日志 Close = 0, //日常-少 Level1, //日常-多 Level2, //调试日志 LevelDebug, //开启所有日志 All, }; };