From be7f8cba6922e05ada27289f49e07112fabf065d Mon Sep 17 00:00:00 2001 From: Joey Espinosa Date: Wed, 26 Jan 2022 23:03:43 -0500 Subject: [PATCH] chore: remove an unnecessary word from debug log message --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5804a50..68dada0 100644 --- a/main.go +++ b/main.go @@ -136,7 +136,7 @@ func main() { heartrate <- time.Second * 3 go func() { - log.Debug("Listening for internal info requests on 9090") + log.Debug("Listening for internal requests on 9090") http.ListenAndServe(":9090", internalMux) }() log.Info("Listening for heartbeat changes")