diff --git a/web/web.go b/web/web.go index 721219346..5917f626e 100644 --- a/web/web.go +++ b/web/web.go @@ -56,6 +56,7 @@ func StartServing(appState *appstate.ApplicationState) { exp.Handle("/static/", http.StripPrefix("/static/", new(blob.Handler))) } + log.Printf("listening on %s", *listenAddress) go http.ListenAndServe(*listenAddress, exp.DefaultCoarseMux) }