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 }