web.StartServing prints listening address

This commit is contained in:
Bernerd Schaefer 2013-04-25 11:59:39 +02:00
parent a2a4f94aae
commit 862054e88b
1 changed files with 1 additions and 0 deletions

View File

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