diff --git a/test/utils/Log/src/ILogTest.cpp b/test/utils/Log/src/ILogTest.cpp index 91474bfa..143b14fa 100644 --- a/test/utils/Log/src/ILogTest.cpp +++ b/test/utils/Log/src/ILogTest.cpp @@ -39,7 +39,7 @@ namespace ILogTest */ - // 设置 INFO 级别的日志格式为蓝色 + // 设置 INFO 级别的日志格式为绿色 defaultConf.set(el::Level::Info, el::ConfigurationType::Format, "\x1b[32m%datetime %level %msg\x1b[0m"); @@ -81,7 +81,7 @@ namespace ILogTest // el::Loggers::reconfigureLogger("default", defaultConf); // 使用easylogging++的日志宏 - LOG(INFO) << "hello world......."; + LOG(INFO) << "hello world."; LOG(ERROR) << "create ... failed."; LOG(DEBUG) << "a = " << 124 << " b = " << "apple";