Skip to content

Commit

Permalink
Merge pull request kubernetes#70348 from zhangmingld/unnecessaryglogv10
Browse files Browse the repository at this point in the history
duplicated glog.V(10) when had a if glog.V(10)
  • Loading branch information
k8s-ci-robot authored Oct 31, 2018
2 parents 5a8f831 + 429e67a commit b53edbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scheduler/core/generic_scheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b53edbc

Please sign in to comment.