From e931c09a34a4857d4b6042e6fb439828fc9a18c1 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Fri, 21 May 2021 21:39:32 +0100 Subject: [PATCH] add message when web ui is loaded a lack of output after "Loading routes" was a little confusing. --- main.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/main.go b/main.go index e233a30..a0f12a9 100644 --- a/main.go +++ b/main.go @@ -602,6 +602,11 @@ func start(asDaemon, firstCall bool) { app.err.Printf("Failure serving: %s", err) } } + if firstRun { + app.info.Printf("Loaded, visit %s to start.", address) + } else { + app.info.Printf("Loaded @ %s", address) + } }() app.quit = make(chan os.Signal) signal.Notify(app.quit, os.Interrupt)