change infof to Errorf in some codes

This commit is contained in:
lojies
2016-09-12 14:44:08 +08:00
parent 2462f43798
commit 9498b227a1
6 changed files with 6 additions and 6 deletions

View File

@@ -481,7 +481,7 @@ func (dc *DeploymentController) syncDeployment(key string) error {
obj, exists, err := dc.dStore.Indexer.GetByKey(key)
if err != nil {
glog.Infof("Unable to retrieve deployment %v from store: %v", key, err)
glog.Errorf("Unable to retrieve deployment %v from store: %v", key, err)
return err
}
if !exists {