Small code fix

Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
Matthew Heon
2019-05-03 11:42:34 -04:00
parent 4d348d7839
commit 5c4fefa533

View File

@ -235,7 +235,7 @@ func (c *Container) handleRestartPolicy(ctx context.Context) (restarted bool, er
logrus.Debugf("Container %s restart policy trigger: on retry %d (of %d)",
c.ID(), c.state.RestartCount, c.config.RestartRetries)
} else {
logrus.Debugf("Container %s restart policy trigger: retries exhausted")
logrus.Debugf("Container %s restart policy trigger: retries exhausted", c.ID())
return false, nil
}
}