Skip to content

Commit

Permalink
Chore | Changed print statement from Info to Error
Browse files Browse the repository at this point in the history
Signed-off-by: Dag Andersen <dagbjerreandersen@gmail.com>
  • Loading branch information
dag-andersen committed Feb 8, 2025
1 parent 5e0a039 commit 69c4084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (g *GitOperations) CloneRepo(ctx context.Context) error {

stdout, stderr, err := g.runCmd(ctx, path, "clone", "--verbose", "--progress", "--filter=blob:none", g.gap.GetGitHttpsRepoUrl(*g.gitRepo), path)
if err != nil {
logger.Info("Cloned repo failed", "repo", g.gap.GetGitHttpsRepoUrl(*g.gitRepo), "stdout", stdout, "stderr", stderr)
logger.Error(err, "Cloned repo failed", "repo", g.gap.GetGitHttpsRepoUrl(*g.gitRepo), "stdout", stdout, "stderr", stderr)
return err
}

Expand Down

0 comments on commit 69c4084

Please sign in to comment.