From 1cf3bc87a8db12295743a87c70f18d94bc32c9b0 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 21 Dec 2016 12:23:51 -0500 Subject: [PATCH] Log that we are listening --- cmd/pypihub/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/pypihub/main.go b/cmd/pypihub/main.go index 789c5de..7d78da6 100644 --- a/cmd/pypihub/main.go +++ b/cmd/pypihub/main.go @@ -12,5 +12,7 @@ func main() { var router *pypihub.Router router = pypihub.NewRouter(config) + + log.Printf("server listening on %s", config.Bind) log.Fatal(router.Start()) }