Enabling Nitro ('--stepAnalysis') again. Fix #58
authorspf13 <steve.francia@gmail.com>
Thu, 3 Oct 2013 13:44:45 +0000 (09:44 -0400)
committerspf13 <steve.francia@gmail.com>
Thu, 3 Oct 2013 13:44:45 +0000 (09:44 -0400)
commands/hugo.go
hugolib/site.go

index 21f4f0f90bbaa9383abade13a0ff181d3fac59dc..b52e85332293eff0488fcac4e47a1dd878601775 100644 (file)
@@ -19,6 +19,7 @@ import (
        "github.com/mostafah/fsync"
        "github.com/spf13/cobra"
        "github.com/spf13/hugo/hugolib"
+       "github.com/spf13/nitro"
        "log"
        "os"
        "path/filepath"
@@ -66,6 +67,7 @@ func init() {
        HugoCmd.PersistentFlags().BoolVar(&UglyUrls, "uglyurls", false, "if true, use /filename.html instead of /filename/")
        HugoCmd.PersistentFlags().StringVarP(&BaseUrl, "base-url", "b", "", "hostname (and path) to the root eg. http://spf13.com/")
        HugoCmd.PersistentFlags().StringVar(&CfgFile, "config", "", "config file (default is path/config.yaml|json|toml)")
+       HugoCmd.PersistentFlags().BoolVar(&nitro.AnalysisOn, "stepAnalysis", false, "display memory and timing of different steps of the program")
        HugoCmd.Flags().BoolVarP(&BuildWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed")
 }
 
index 3511b6a13a66b733dcd2e7a76eccc1df670cd3d4..25ee4d3dc452968eea8a371aff2b7c63af7a3f71 100644 (file)
@@ -31,7 +31,7 @@ import (
        "time"
 )
 
-var DefaultTimer = nitro.Initalize()
+var DefaultTimer *nitro.B
 
 func MakePermalink(base *url.URL, path *url.URL) *url.URL {
        return base.ResolveReference(path)
@@ -78,6 +78,10 @@ type SiteInfo struct {
        Config     *Config
 }
 
+func init() {
+       DefaultTimer = nitro.Initalize()
+}
+
 func (s *Site) timerStep(step string) {
        if s.timer == nil {
                s.timer = DefaultTimer