From 76adc45431d2e76a1d565b598efec4937f8e4959 Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Tue, 4 Jan 2022 22:49:23 +0100 Subject: [PATCH] docs: match typically log message style --- cli/recipe/upgrade.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {