1
0
Fork 0

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

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