Skip to content

Commit

Permalink
commands: Make hugo env respect --logLevel
Browse files Browse the repository at this point in the history
Fixes #11145
  • Loading branch information
bep committed Jun 21, 2023
1 parent 49336bf commit b1016d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions commands/commandeer.go
Expand Up @@ -136,6 +136,10 @@ type rootCommand struct {
cfgDir string
}

func (r *rootCommand) isVerbose() bool {
return r.logger.Level() <= logg.LevelInfo
}

func (r *rootCommand) Build(cd *simplecobra.Commandeer, bcfg hugolib.BuildCfg, cfg config.Provider) (*hugolib.HugoSites, error) {
h, err := r.Hugo(cfg)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion commands/config.go
Expand Up @@ -212,7 +212,7 @@ func (c *configMountsCommand) Run(ctx context.Context, cd *simplecobra.Commandee
}

for _, m := range conf.configs.Modules {
if err := parser.InterfaceToConfig(&configModMounts{m: m, verbose: r.verbose}, metadecoders.JSON, os.Stdout); err != nil {
if err := parser.InterfaceToConfig(&configModMounts{m: m, verbose: r.isVerbose()}, metadecoders.JSON, os.Stdout); err != nil {
return err
}
}
Expand Down
2 changes: 1 addition & 1 deletion commands/env.go
Expand Up @@ -32,7 +32,7 @@ func newEnvCommand() simplecobra.Commander {
r.Printf("GOARCH=%q\n", runtime.GOARCH)
r.Printf("GOVERSION=%q\n", runtime.Version())

if r.verbose {
if r.isVerbose() {
deps := hugo.GetDependencyList()
for _, dep := range deps {
r.Printf("%s\n", dep)
Expand Down
2 changes: 1 addition & 1 deletion commands/hugobuilder.go
Expand Up @@ -1012,7 +1012,7 @@ func (c *hugoBuilder) loadConfig(cd *simplecobra.Commandeer, running bool) error
cfg.Set("internal", maps.Params{
"running": running,
"watch": watch,
"verbose": c.r.verbose,
"verbose": c.r.isVerbose(),
})

conf, err := c.r.ConfigFromProvider(c.r.configVersionID.Load(), flagsToCfg(cd, cfg))
Expand Down

0 comments on commit b1016d2

Please sign in to comment.