watchdogs: make healthy-state outputs always visible

log() is gated on ENABLE_LOGGING — silent on normal runs. Healthy
confirmations (All healthy, Network healthy, Storage healthy, WebGUI
healthy) were invisible, making banners appear with nothing after them.
Switched all four to plain echo so they show every cycle.
This commit is contained in:
Gmer4Lfe
2026-05-24 17:25:33 -04:00
parent afd9129869
commit ea9f39a803
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -937,5 +937,5 @@ CYCLE_START=$(date +%s)
echo "$ICON_TIME Duration: $(format_duration $(( CYCLE_END - CYCLE_START )))"
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
else
log "All healthy ✅ ($(date '+%H:%M:%S'))"
echo "All healthy ✅ ($(date '+%H:%M:%S'))"
fi