From 49c72baa3270b37ea465c50b8d000936e07e5858 Mon Sep 17 00:00:00 2001 From: Ruud Kamphuis Date: Sat, 13 Jul 2019 15:08:52 +0200 Subject: [PATCH] Add scheme to server address 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 348dd4dbc..a30ff0c79 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,