|
@@ -11,7 +11,6 @@
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include "spdlog/spdlog.h"
|
|
|
-#include "fmtlog.h"
|
|
|
#include "LightLog.h"
|
|
|
|
|
|
#include "nlohmann/json.hpp"
|
|
@@ -207,7 +206,7 @@ void Widget::on_pBtn_logSpeed_clicked()
|
|
|
std::chrono::steady_clock::time_point spdlogEnd = std::chrono::steady_clock::now();
|
|
|
for(int i = 0; i < 100000; i++)
|
|
|
{
|
|
|
- FMTLOG_INFO("{}", "你好,这是日志速度的对比,这个是FMTLOG在打印日志");
|
|
|
+ // FMTLOG_INFO("{}", "你好,这是日志速度的对比,这个是FMTLOG在打印日志");
|
|
|
}
|
|
|
std::chrono::steady_clock::time_point fmtlogEnd = std::chrono::steady_clock::now();
|
|
|
/* 使用std::cout */
|