From 51beafed0faad59b33c29ac2d40049bb27c00e05 Mon Sep 17 00:00:00 2001 From: Space-Banane Date: Tue, 27 Jan 2026 17:40:02 +0100 Subject: [PATCH] fix: log message for unconfigured Kuma push monitor --- bot.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bot.go b/bot.go index a23a0d2..c26b8d3 100644 --- a/bot.go +++ b/bot.go @@ -66,6 +66,8 @@ func main() { } go startKumaPush(kumaPushURL, interval) log.Printf("Kuma push monitor started (URL: %s, Interval: %ds)", kumaPushURL, interval) + } else { + log.Println("Kuma push monitor not configured.") } // Wait here until CTRL-C or other term signal is received.