fix: remove dupe logging on catalogue reading [ci skip]

This commit is contained in:
decentral1se 2022-02-14 17:37:16 +01:00
parent 46fca7cfa7
commit 6b2a0011af
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 0 additions and 2 deletions

View File

@ -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
}