From 2fa72b003ed1bc16b704ecfecf9f31e249eca651 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Sat, 13 Jul 2019 19:51:34 +0200 Subject: [PATCH] Add scheme to server address (#1734) This makes it easier to CMD + click the URL when the server is started. --- server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.go b/server.go index e623c9562..03f768780 100644 --- a/server.go +++ b/server.go @@ -19,7 +19,7 @@ import ( // interrupt and kill signals and will attempt to stop the application // gracefully. This will also start the Worker process, unless WorkerOff is enabled. func (a *App) Serve(srvs ...servers.Server) error { - a.Logger.Infof("Starting application at %s", a.Options.Addr) + a.Logger.Infof("Starting application at http://%s", a.Options.Addr) payload := events.Payload{ "app": a,