将心跳记录更新日志的日志级别从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) @Scheduled(fixedDelay = 10, timeUnit = TimeUnit.SECONDS)
public void executeUpdateDeviceList() { public void executeUpdateDeviceList() {
log.info("[定时任务] 更新心跳记录,待处理设备数量: {}", taskQueue.size()); log.debug("[定时任务] 更新心跳记录,待处理设备数量: {}", taskQueue.size());
try { try {
if (!taskQueue.isEmpty()) { if (!taskQueue.isEmpty()) {
redisCatchStorage.updateDeviceKeepaliveTimeStamp(taskQueue.stream().toList()); redisCatchStorage.updateDeviceKeepaliveTimeStamp(taskQueue.stream().toList());