From fb8ee6a00a4f1447df25339a0b745cc6544c1aac Mon Sep 17 00:00:00 2001 From: pandx Date: Fri, 8 Nov 2024 09:15:05 +0800 Subject: [PATCH] adjust log info. --- scheduler/schedule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scheduler/schedule.cpp b/scheduler/schedule.cpp index 92503f2..7460b5b 100644 --- a/scheduler/schedule.cpp +++ b/scheduler/schedule.cpp @@ -151,7 +151,7 @@ int SensorScheduler::GetNextDuration(int short_addr) { long current_ts = GetLocalTs(); long next_ts = CalcNextTimestamp(id); int duration = next_ts - current_ts; - zlog_debug(zct, "[%d] next duration is %d", id, duration); + zlog_warn(zct, "[%d] next duration is %d", id, duration); return duration; }