本文主要是介绍【spdlog学习】【issue】#2975-编译时设置宏定义SPDLOG_ACTIVE_LEVEL对日志等级的影响,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
【网络链接】issue
问题的大概意思是,下面的代码没有按照楼主的预期输出日志
/*代码*/#include "spdlog/spdlog.h"int main() {spdlog::info("Welcome to spdlog!");spdlog::error("Some error message with arg: {}", 1);spdlog::warn("Easy padding in numbers like {:08d}", 12);spdlog::critical("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42);spdlog::info("Support for floats {:03.2f}", 1.23456);spdlog::info("Positional args are {1} {0}..", "too", "supported");spdlog::info("{:<30}", "left aligned");spdlog::set_level(spdlog::level::debug); // Set global log level to debugspdlog::debug("This message should be displayed.."); // change log patternspdlog::set_pattern("[%H:%M:%S %z] [%n] [%^---%L---%$] [thread %t] %v");// Compile time log levels// define SPDLOG_ACTIVE_LEVEL to desired levelSPDLOG_TRACE("Some trace message with param {}", 42);SPDLOG_DEBUG("Some debug message");}/*编译命令g++ -I include -std=c++11 -O0 -g -DSPDLOG_ACTIVE_LEVEL=SPDLOG_LEVEL_TRACE -o spdlog-main ./spdlog-main.cc*//*日志输出结果这一条日志没有正常输出,其他输出正常SPDLOG_TRACE("Some trace message with param {}", 42); */
楼主分析代码的过程还是挺厉害的,先进行预编译观察宏定义是否替换成功。然后再用gdb去跟踪代码观察输出逻辑。最后发现,需要在输出前进行日志等级设置,才能正常输出。
spdlog::set_level(spdlog::level::trace); //设置日志等级为traceSPDLOG_TRACE("Some trace message with param {}", 42);
在这个issue下面,也有大佬解释了
The logging macro SPDLOG_TRACE is a macro to remove unnecessary logging statements by SPDLOG_ACTIVE_LEVEL which was defined at compile time, so the current behavior is as specified.SPDLOG_TRACE这个宏,依据SPDLOG_ACTIVE_LEVEL的值删除不必要的日志语句,而SPDLOG_ACTIVE_LEVEL是在编译时定义的,所以当前的行为是指定的【TODO 最后这半句没懂】。The examples in the Basic usage section of README.md are certainly confusing.这个代码示例来自README中的Basic usage,确实使人困惑。
也就是说编译时设置SPDLOG_ACTIVE_LEVEL并不会影响代码中spdlog::set_level设置的日志等级。
我也去找了找源码看看,确实很难看啊,就当看小说一样了解一下,千万别想着全看明白。
//SPDLOG_TRACE的定义#if SPDLOG_ACTIVE_LEVEL <= SPDLOG_LEVEL_TRACE#define SPDLOG_LOGGER_TRACE(logger, ...) \SPDLOG_LOGGER_CALL(logger, spdlog::level::trace, __VA_ARGS__)#define SPDLOG_TRACE(...) SPDLOG_LOGGER_TRACE(spdlog::default_logger_raw(), __VA_ARGS__)#else //在SPDLOG_ACTIVE_LEVEL > SPDLOG_LEVEL_TRACE的情况下,宏定义就是不执行#define SPDLOG_LOGGER_TRACE(logger, ...) (void)0#define SPDLOG_TRACE(...) (void)0#endif//底层日志是否输出的逻辑判断SPDLOG_INLINE void logger::set_level(level::level_enum log_level) { level_.store(log_level); }// return true logging is enabled for the given level.bool should_log(level::level_enum msg_level) const {return msg_level >= level_.load(std::memory_order_relaxed); //level_这个值会被 spdlog::set_level 修改}template <typename... Args>void log_(source_loc loc, level::level_enum lvl, string_view_t fmt, Args &&...args) {bool log_enabled = should_log(lvl); //这块进行了比较日志等级比较决定 log_enabled bool traceback_enabled = tracer_.enabled();if (!log_enabled && !traceback_enabled) {
这篇关于【spdlog学习】【issue】#2975-编译时设置宏定义SPDLOG_ACTIVE_LEVEL对日志等级的影响的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!