Add --debug option to be improved on over time

Why:

 * first time using hugo I got very little info from --verbose output
   but I noticed there is quite a lot of useful DEBUG logging
 * asked for in other issues like https://github.com/gohugoio/hugo/issues/3514

This change addreses the need by:

 * adding a simple --debug flag which simply turns on debug level in stdout
   and logoutput if enabled.
This commit is contained in:
Max Rydahl Andersen
2017-07-27 22:36:22 +02:00
committed by Bjørn Erik Pedersen
parent c1a5da9777
commit aee2b06780
2 changed files with 11 additions and 1 deletions

View File

@@ -132,4 +132,5 @@ func loadDefaultSettingsFor(v *viper.Viper) {
v.SetDefault("enableGitInfo", false)
v.SetDefault("ignoreFiles", make([]string, 0))
v.SetDefault("disableAliases", false)
v.SetDefault("debug", false)
}