@@ -188,7 +188,7 @@ func Run(ctx context.Context, l log.Logger, opts *options.TerragruntOptions, mod
188188 return errors .New (err )
189189 }
190190
191- l .Infof ("Scaffolding a new Terragrunt module %s to %s" , moduleURL , outputDir )
191+ l .Debugf ("Scaffolding a new Terragrunt module %s to %s" , moduleURL , outputDir )
192192
193193 if _ , err := getter .GetAny (ctx , tempDir , moduleURL ); err != nil {
194194 return errors .New (err )
@@ -236,7 +236,7 @@ func Run(ctx context.Context, l log.Logger, opts *options.TerragruntOptions, mod
236236 )
237237 }
238238
239- l .Infof ("Running boilerplate generation to %s" , outputDir )
239+ l .Debugf ("Running boilerplate generation to %s" , outputDir )
240240 boilerplateOpts := NewBoilerplateOptions (boilerplateDir , outputDir , vars , opts )
241241
242242 emptyDep := & variables.Dependency {}
@@ -259,13 +259,13 @@ func Run(ctx context.Context, l log.Logger, opts *options.TerragruntOptions, mod
259259
260260 allFiles = slices .Compact (slices .Sorted (slices .Values (allFiles )))
261261
262- l .Infof ("Running fmt on generated code %s" , outputDir )
262+ l .Debugf ("Running fmt on generated code %s" , outputDir )
263263
264264 if err := format .RunForFiles (ctx , l , opts , outputDir , allFiles ); err != nil {
265265 return errors .New (err )
266266 }
267267
268- l .Info ("Scaffolding completed" )
268+ l .Debug ("Scaffolding completed" )
269269
270270 return nil
271271}
@@ -410,7 +410,7 @@ func downloadTemplate(
410410 return "" , errors .New (err )
411411 }
412412
413- l .Infof ("Downloading template from %s into %s" , baseURL .String (), templateDir )
413+ l .Debugf ("Downloading template from %s into %s" , baseURL .String (), templateDir )
414414 // Downloading baseURL to support boilerplate dependencies and partials. Go-getter discards all but specified folder if one is provided.
415415 if _ , err := getter .GetAny (ctx , templateDir , baseURL .String ()); err != nil {
416416 return "" , errors .New (err )
0 commit comments