From 3fae036db2c712f19c6337645cdae243ee1f3646 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 47c36981e..933e7add9 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 {