From cb937eae0ba14a43054e6e587e05ef495f4acff5 Mon Sep 17 00:00:00 2001 From: Fabricio Date: Tue, 21 Nov 2017 19:36:55 -0200 Subject: [PATCH] print dashboard url --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 39ba945..40a8a44 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,8 @@ func main() { http.Handle("/socket.io/", getSocketHandler()) http.Handle("/"+dashboard+"/", getDashboardHandler()) - fmt.Printf("\nListening on http://localhost:%s\n\n", proxyPort) + fmt.Printf("\nListening on http://localhost:%s", proxyPort) + fmt.Printf("\n http://localhost:%s/%s\n\n", proxyPort, dashboard) http.ListenAndServe(":"+proxyPort, nil) }