From a38faeabc39f7efec9bc05af15378b54af4f772e Mon Sep 17 00:00:00 2001 From: Simon Hilchenbach Date: Sat, 22 Jan 2022 23:03:10 +0100 Subject: [PATCH] Log server listening endpoint on startup --- pkg/cmd/web.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/cmd/web.go b/pkg/cmd/web.go index c42262209..bb0d4c51d 100644 --- a/pkg/cmd/web.go +++ b/pkg/cmd/web.go @@ -90,6 +90,7 @@ var webCmd = &cobra.Command{ e.Logger.Fatal(err) } } + log.Infof("Server is running on %s", config.ServiceInterface.GetString()) if err := e.Start(config.ServiceInterface.GetString()); err != nil { e.Logger.Info("shutting down...") }