From: spf13 Date: Wed, 10 Jul 2013 13:21:41 +0000 (-0400) Subject: Adding total time to generated stats. X-Git-Tag: v0.8~36 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d4caa8ee;p=brevno-suite%2Fhugo Adding total time to generated stats. --- diff --git a/main.go b/main.go index 9bb5ccd8..8d37afee 100644 --- a/main.go +++ b/main.go @@ -23,6 +23,7 @@ import ( "path/filepath" "runtime/pprof" "sync" + "time" ) const ( @@ -118,11 +119,11 @@ func serve(port string, config *hugolib.Config) { } func buildSite(config *hugolib.Config) *hugolib.Site { + startTime := time.Now() site := hugolib.NewSite(config) site.Build() - site.Stats() - + fmt.Printf("in %v ms\n", int(1000 * time.Since(startTime).Seconds())) return site }