fix: handle %s correctly
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-12-31 12:05:40 +01:00
parent 9bdb07463c
commit 1245827dff
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ func checkErrors(c *cli.Context, cl *dockerClient.Client, app config.App) error
}
if containerState.State.Error != "" {
logrus.Warnf("%s reports this error: ", containerState.State.Error)
logrus.Warnf("%s reports this error: %s", service.Name, containerState.State.Error)
}
if containerState.State.Health != nil {