Skip to content

Commit cddd136

Browse files
authored
use debug logs during create project status (#2015)
1 parent 8668ee1 commit cddd136

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libs/digger_config/terragrunt/atlantis/generate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,11 +806,11 @@ func Parse(gitRoot string, projectHclFiles []string, createHclProjectExternalChi
806806
}
807807

808808
if !updateProject {
809-
slog.Info("Created project", "path", terragruntPath)
809+
slog.Debug("Created project", "path", terragruntPath)
810810
atlantisConfig.Projects = append(atlantisConfig.Projects, *project)
811811
}
812812
} else {
813-
slog.Info("Created project", "path", terragruntPath)
813+
slog.Debug("Created project", "path", terragruntPath)
814814
atlantisConfig.Projects = append(atlantisConfig.Projects, *project)
815815
}
816816

@@ -843,7 +843,7 @@ func Parse(gitRoot string, projectHclFiles []string, createHclProjectExternalChi
843843
lock.Lock()
844844
defer lock.Unlock()
845845

846-
slog.Info("Created project",
846+
slog.Debug("Created project",
847847
"type", projectHcl,
848848
"workingDir", workingDir)
849849
atlantisConfig.Projects = append(atlantisConfig.Projects, *project)

0 commit comments

Comments
 (0)