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) }