Merge pull request #70348 from zhangmingld/unnecessaryglogv10

duplicated glog.V(10) when had a if glog.V(10)
pull/58/head
k8s-ci-robot 2018-10-31 01:07:32 -07:00 committed by GitHub
commit b53edbc695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ func PrioritizeNodes(
if glog.V(10) {
for i := range result {
glog.V(10).Infof("Host %s => Score %d", result[i].Host, result[i].Score)
glog.Infof("Host %s => Score %d", result[i].Host, result[i].Score)
}
}
return result, nil