From a2b3878ad2446c03b49e7793ed12a8399179fc3a Mon Sep 17 00:00:00 2001 From: rcourtman Date: Sun, 21 Dec 2025 21:52:57 +0000 Subject: [PATCH] fix: correct patrol interval logging The log was showing QuickCheckInterval (deprecated, always 0) instead of the actual Interval field. This caused confusing 'interval: 0' logs. --- internal/ai/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ai/service.go b/internal/ai/service.go index 5f6df02..fbfdeb0 100644 --- a/internal/ai/service.go +++ b/internal/ai/service.go @@ -529,7 +529,7 @@ func (s *Service) ReconfigurePatrol() { log.Info(). Bool("enabled", patrolCfg.Enabled). - Dur("interval", patrolCfg.QuickCheckInterval). + Dur("interval", patrolCfg.Interval). Msg("Patrol configuration updated") // Update alert-triggered analyzer (re-check license on each config change)