fix: log message for unconfigured Kuma push monitor

This commit is contained in:
Space-Banane
2026-01-27 17:40:02 +01:00
parent 7005d4588d
commit 51beafed0f

2
bot.go
View File

@@ -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.