log: no additional newlines

This commit is contained in:
2024-07-08 00:39:55 +02:00
parent cde06f4f00
commit 465827d5ee
3 changed files with 13 additions and 13 deletions

View File

@ -332,9 +332,9 @@ You may invoke this command in "wizard" mode and be prompted for input:
}
for _, upgrade := range upgradeList {
log.Infof("can upgrade service: %s, image: %s, tag: %s ::\n", upgrade.Service, upgrade.Image, upgrade.Tag)
log.Infof("can upgrade service: %s, image: %s, tag: %s ::", upgrade.Service, upgrade.Image, upgrade.Tag)
for _, utag := range upgrade.UpgradeTags {
log.Infof(" %s\n", utag)
log.Infof(" %s", utag)
}
}
}