Add the missing arg in Errorf.

This commit is contained in:
Dawn Chen 2014-10-07 13:53:25 -07:00
parent 3cc2aa8f76
commit 73c8f41737

View File

@ -295,7 +295,7 @@ func (kl *Kubelet) newActionHandler(handler *api.Handler) actionHandler {
case handler.HTTPGet != nil:
return &httpActionHandler{client: kl.httpClient, kubelet: kl}
default:
glog.Errorf("Invalid handler: %v")
glog.Errorf("Invalid handler: %v", handler)
return nil
}
}