Fix log info message

Signed-off-by: Roman Iuvshin <riuvshin@codenvy.com>
This commit is contained in:
Roman Iuvshin 2015-10-23 17:12:15 +03:00
parent 7510c12122
commit 40a22e5a13
1 changed files with 1 additions and 1 deletions

View File

@ -422,7 +422,7 @@ func (e *Engine) refreshLoop() {
}
} else {
if !e.healthy {
log.WithFields(log.Fields{"name": e.Name, "id": e.ID}).Info("Engine came back to life after %d retries. Hooray!", failedAttempts)
log.WithFields(log.Fields{"name": e.Name, "id": e.ID}).Infof("Engine came back to life after %d retries. Hooray!", failedAttempts)
if err := e.updateSpecs(); err != nil {
log.WithFields(log.Fields{"name": e.Name, "id": e.ID}).Errorf("Update engine specs failed: %v", err)
continue