Skip to content

Commit

Permalink
Merge pull request #316 from mlaventure/add-missing-printf-arg
Browse files Browse the repository at this point in the history
Add missing printf parameter when starttime write fails
  • Loading branch information
mlaventure committed Sep 12, 2016
2 parents ddf95cb + f7de905 commit 4c21ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/container.go
Expand Up @@ -631,7 +631,7 @@ func (c *container) waitForCreate(p *process, cmd *exec.Cmd) error {
}
err = p.saveStartTime()
if err != nil {
logrus.Warnf("containerd: unable to save %s:%s starttime: %v", p.container.id, p.id)
logrus.Warnf("containerd: unable to save %s:%s starttime: %v", p.container.id, p.id, err)
}
return nil
case <-time.After(c.timeout):
Expand Down

0 comments on commit 4c21ad6

Please sign in to comment.