From 35d7909828e1d39327bc874e12dca82d0956891d Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sat, 11 Jul 2026 17:03:38 -0400 Subject: [PATCH] Downgrade watchdog heartbeat to log level Was logged as a warning every heartbeat interval; it's routine, not a warning. --- Orchestrators/watchdog_orchestrator.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Orchestrators/watchdog_orchestrator.sh b/Orchestrators/watchdog_orchestrator.sh index dff0618..71ac42f 100755 --- a/Orchestrators/watchdog_orchestrator.sh +++ b/Orchestrators/watchdog_orchestrator.sh @@ -201,7 +201,7 @@ if [[ "${WATCHDOG_ORCHESTRATOR_HEARTBEAT:-true}" == true ]]; then HB_ELAPSED=$(( HB_COUNT * 60 )) if [[ "$HB_SECONDS" -gt 0 ]] && (( HB_ELAPSED % HB_SECONDS < 60 )) && [[ "$HB_COUNT" -gt 1 ]]; then HB_HR=$(( HB_ELAPSED / 3600 )) - warn "♥ watchdog_orchestrator alive — $MY_ID — ~${HB_HR}hr ($(date '+%H:%M:%S'))" + log "♥ watchdog_orchestrator alive — $MY_ID — ~${HB_HR}hr ($(date '+%H:%M:%S'))" fi fi