refactor: less quotes, less verbose

This commit is contained in:
decentral1se 2021-12-26 00:14:32 +01:00
parent 9cc2554846
commit 779c810521
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ A new catalogue copy can be published to the recipes repository by passing the
logrus.Fatal(err)
}
logrus.Debugf("ensuring '%v' recipe(s) are locally present and up-to-date", len(repos))
logrus.Debugf("ensuring %v recipe(s) are locally present and up-to-date", len(repos))
var barLength int
if recipeName != "" {

View File

@ -33,7 +33,7 @@ func Clone(dir, url string) error {
}
logrus.Debugf("%s has been git cloned successfully", dir)
} else {
logrus.Debugf("%s already exists, doing nothing", dir)
logrus.Debugf("%s already exists", dir)
}
return nil