From 4bcdad172452c4fb119ce159c2894198cc5f537e Mon Sep 17 00:00:00 2001 From: fungal Date: Sat, 23 Dec 2023 15:55:39 +0100 Subject: [PATCH] log when service will start to listen, useful for troubleshooting --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 5151e8c..297d3f0 100644 --- a/main.go +++ b/main.go @@ -92,5 +92,6 @@ func main() { config.RequestsFile = *requestsFile config.Listen = *listen + log.Println("Going to listen for incoming connections!") setupRoutes() }