projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2385f0
)
adding more verbose output to server functionality
author
spf13
<steve.francia@gmail.com>
Fri, 26 Jul 2013 13:24:35 +0000
(09:24 -0400)
committer
spf13
<steve.francia@gmail.com>
Fri, 26 Jul 2013 13:24:35 +0000
(09:24 -0400)
main.go
patch
|
blob
|
history
diff --git
a/main.go
b/main.go
index 83239c2fa6a1c7334003625450bff2c575496880..d991646c5cd7073cbeec875f92db62df9a0bc7d2 100644
(file)
--- 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))))