From 6c9ea1b16c6a166575f076d8f82927b31f7a11f9 Mon Sep 17 00:00:00 2001 From: Joey Espinosa Date: Wed, 26 Jan 2022 21:58:48 -0500 Subject: [PATCH] chore: add port information into debug startup msg --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 7c8ed24..37904bb 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.") + log.Debug("Listening for internal info requests on 9090.") http.ListenAndServe(":9090", internalMux) }() log.Info("Listening for heartbeat changes.")