将心跳记录更新日志的日志级别从info调整为debug

This commit is contained in:
lin 2026-03-30 17:01:05 +08:00
parent ede979dbf9
commit 1a83d5a504

View File

@ -94,7 +94,7 @@ public class KeepaliveNotifyMessageHandler extends SIPRequestProcessorParent imp
}
@Scheduled(fixedDelay = 10, timeUnit = TimeUnit.SECONDS)
public void executeUpdateDeviceList() {
log.info("[定时任务] 更新心跳记录,待处理设备数量: {}", taskQueue.size());
log.debug("[定时任务] 更新心跳记录,待处理设备数量: {}", taskQueue.size());
try {
if (!taskQueue.isEmpty()) {
redisCatchStorage.updateDeviceKeepaliveTimeStamp(taskQueue.stream().toList());