fix: 心跳日志从 Debug 改为 Info 级别,避免被 log4cplus 配置过滤

This commit is contained in:
Huamonarch 2026-05-18 09:43:17 +08:00
parent 4970481d70
commit 8d17e6258e

View File

@ -210,7 +210,7 @@ void AlgBase::exec_mon_call() {
} }
} }
if (get_heart_beat_log_cycled()) { if (get_heart_beat_log_cycled()) {
logger_->Debug() << "heart_beat_log----active!" << std::endl; logger_->Info() << "heart_beat_log----active!" << std::endl;
} }
} }