diff --git a/pkg/recipe/recipe.go b/pkg/recipe/recipe.go index a5c1e042..80687a39 100644 --- a/pkg/recipe/recipe.go +++ b/pkg/recipe/recipe.go @@ -708,14 +708,12 @@ func ReadRecipeCatalogue() (RecipeCatalogue, error) { } if !recipeFSIsLatest { - logrus.Debugf("reading recipe catalogue from web to get latest") if err := readRecipeCatalogueWeb(&recipes); err != nil { return nil, err } return recipes, nil } - logrus.Debugf("reading recipe catalogue from file system cache to get latest") if err := readRecipeCatalogueFS(&recipes); err != nil { return nil, err }