From a4d53a1fe511f0354afa737c93a2d7b8d0fef79e Mon Sep 17 00:00:00 2001 From: p4u1 Date: Mon, 11 Aug 2025 11:40:09 +0200 Subject: [PATCH] change to debug log --- cli/internal/validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/internal/validate.go b/cli/internal/validate.go index 47c36981..933e7add 100644 --- a/cli/internal/validate.go +++ b/cli/internal/validate.go @@ -32,7 +32,7 @@ func ValidateRecipe(args []string, cmdName string) recipe.Recipe { localRecipes, err := recipe.GetRecipesLocal() if err != nil { - log.Infof("can't read local recipes: %s", err) + log.Debugf("can't read local recipes: %s", err) } else { for _, recipeLocal := range localRecipes { if _, ok := knownRecipes[recipeLocal]; !ok {