From b3a2402cecc65524597f23e33a7b6745361c854b Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 5 Jan 2025 10:38:24 +0100 Subject: [PATCH] chore: remove redundant logging --- pkg/recipe/git.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/recipe/git.go b/pkg/recipe/git.go index 64cada7f..addfdd92 100644 --- a/pkg/recipe/git.go +++ b/pkg/recipe/git.go @@ -60,7 +60,6 @@ func (r Recipe) Ensure(ctx EnsureContext) error { // EnsureExists ensures that the recipe is locally cloned func (r Recipe) EnsureExists() error { if _, err := os.Stat(r.Dir); os.IsNotExist(err) { - log.Debugf("%s does not exist, attemmpting to clone", r.Dir) if err := gitPkg.Clone(r.Dir, r.GitURL); err != nil { return err }