Skip to content

Commit a2a294d

Browse files
authored
chore: Downgrading render log to a debug (#6429)
1 parent f3ba5e4 commit a2a294d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

internal/cli/commands/render/render.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ func renderHCL(l log.Logger, opts *Options, cfg *config.TerragruntConfig) error
119119
return writeRendered(l, opts, buf.Bytes())
120120
}
121121

122-
l.Infof("Rendering config %s", opts.TerragruntConfigPath)
122+
l.Debugf("Rendering config %s", opts.TerragruntConfigPath)
123123

124124
_, err := cfg.WriteTo(opts.Writers.Writer)
125125
if err != nil {
@@ -157,7 +157,7 @@ func renderJSON(l log.Logger, opts *Options, cfg *config.TerragruntConfig) error
157157
return writeRendered(l, opts, jsonBytes)
158158
}
159159

160-
l.Infof("Rendering config %s", opts.TerragruntConfigPath)
160+
l.Debugf("Rendering config %s", opts.TerragruntConfigPath)
161161

162162
_, err = opts.Writers.Writer.Write(jsonBytes)
163163
if err != nil {

0 commit comments

Comments
 (0)