From: spf13 Date: Fri, 26 Jul 2013 13:24:35 +0000 (-0400) Subject: adding more verbose output to server functionality X-Git-Tag: v0.8~18 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c560a753;p=brevno-suite%2Fhugo adding more verbose output to server functionality --- diff --git a/main.go b/main.go index 83239c2f..d991646c 100644 --- a/main.go +++ b/main.go @@ -112,6 +112,11 @@ func main() { } func serve(port string, config *hugolib.Config) { + + if config.Verbose { + fmt.Println("Serving pages from " + config.GetAbsPath(config.PublishDir)) + } + fmt.Println("Web Server is available at http://localhost:" + port) fmt.Println("Press ctrl+c to stop") panic(http.ListenAndServe(":"+port, http.FileServer(http.Dir(config.PublishDir))))