diff --git a/cli/recipe/upgrade.go b/cli/recipe/upgrade.go index 46ab6d7d..d203a6bd 100644 --- a/cli/recipe/upgrade.go +++ b/cli/recipe/upgrade.go @@ -188,13 +188,13 @@ You may invoke this command in "wizard" mode and be prompted for input: } } if contains { - logrus.Infof("Upgrading service %s from %s to %s (pinned tag: %s)", service.Name, tag.String(), upgradeTag, pinnedTagString) + logrus.Infof("upgrading service %s from %s to %s (pinned tag: %s)", service.Name, tag.String(), upgradeTag, pinnedTagString) } else { logrus.Infof("service %s, image %s pinned to %s, no compatible upgrade found", service.Name, servicePins[service.Name].image, pinnedTagString) continue } } else { - logrus.Fatalf("Service %s is at version %s, but pinned to %s, please correct your compose.yml file manually!", service.Name, tag.String(), pinnedTag.String()) + logrus.Fatalf("service %s is at version %s, but pinned to %s, please correct your compose.yml file manually!", service.Name, tag.String(), pinnedTag.String()) continue } } else { @@ -211,7 +211,7 @@ You may invoke this command in "wizard" mode and be prompted for input: } } if upgradeTag == "" { - logrus.Warnf("not upgrading from %s to %s for %s, because the upgrade type is more serious than what user wants.", tag.String(), compatible[0].String(), image) + logrus.Warnf("not upgrading from %s to %s for %s, because the upgrade type is more serious than what user wants", tag.String(), compatible[0].String(), image) continue } } else {