Merge pull request #54117 from nikhiljindal/removeLogs

Automatic merge from submit-queue (batch tested with PRs 53965, 54117, 53685). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

Fixing a glog message to not print managed zones when it is empty

```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-10-18 03:29:56 -07:00 committed by GitHub
commit 4c413ae9a7

View File

@ -449,7 +449,7 @@ func CreateGCECloud(config *CloudConfig) (*GCECloud, error) {
return nil, err
}
}
if len(config.ManagedZones) != 1 {
if len(config.ManagedZones) > 1 {
glog.Infof("managing multiple zones: %v", config.ManagedZones)
}