From 9173022ea7bff5885bb8cfde6f62fa4865b6a829 Mon Sep 17 00:00:00 2001
From: spf13 <steve.francia@gmail.com>
Date: Tue, 27 May 2014 18:29:55 -0400
Subject: [PATCH] Set verbose to Info level

---
 commands/hugo.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/commands/hugo.go b/commands/hugo.go
index 5e55d527..573a405d 100644
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -174,11 +174,11 @@ func InitializeConfig() {
 	}
 
 	if viper.GetBool("verbose") {
-		jww.SetStdoutThreshold(jww.LevelDebug)
+		jww.SetStdoutThreshold(jww.LevelInfo)
 	}
 
 	if VerboseLog {
-		jww.SetLogThreshold(jww.LevelDebug)
+		jww.SetLogThreshold(jww.LevelInfo)
 	}
 
 	jww.INFO.Println("Using config file:", viper.ConfigFileUsed())
@@ -312,7 +312,7 @@ func NewWatcher(port int) error {
 						continue
 					}
 
-					isstatic := strings.HasPrefix(ev.Name, helpers.AbsPathify(viper.GetString("StaticDir")))
+					isstatic := strings.HasPrefix(ev.Name, helpers.AbsPathify(viper.GetString("StaticDir"))) || strings.HasPrefix(ev.Name, helpers.AbsPathify("themes/"+viper.GetString("theme"))+"/static/")
 					static_changed = static_changed || isstatic
 					dynamic_changed = dynamic_changed || !isstatic
 
-- 
2.30.2