Fix mismatched arg and formatter in Errorf

This commit is contained in:
Daniel Smith 2014-10-07 14:03:06 -07:00
parent 2dde76bd03
commit 4dd3094035

View File

@ -75,7 +75,7 @@ func (r *HealthyRegistry) ListMinions(ctx api.Context) (currentMinions *api.Mini
for _, minion := range list.Items {
status, err := health.DoHTTPCheck(r.makeMinionURL(minion.ID), r.client)
if err != nil {
glog.Errorf("%s failed health check with error: %s", minion, err)
glog.Errorf("%#v failed health check with error: %s", minion, err)
continue
}
if status == health.Healthy {