Remove misused Fatal*

This commit is contained in:
Emile Vauge 2016-08-19 10:36:54 +02:00
parent fc19ab2868
commit 11297b38c5
No known key found for this signature in database
GPG key ID: D808B4C167352E59
8 changed files with 12 additions and 12 deletions

View file

@ -141,7 +141,7 @@ func (provider *Docker) Provide(configurationChan chan<- types.ConfigMessage, po
}
err := backoff.RetryNotify(operation, backoff.NewExponentialBackOff(), notify)
if err != nil {
log.Fatalf("Cannot connect to docker server %+v", err)
log.Errorf("Cannot connect to docker server %+v", err)
}
})