Merge pull request #65911 from wongma7/crap

Automatic merge from submit-queue (batch tested with PRs 63194, 65911). 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>.

Remove crappy fmt.Println

Remove @gnufied's debug message https://github.com/kubernetes/kubernetes/pull/64527
```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2018-07-09 00:32:59 -07:00 committed by GitHub
commit 4bb3a2a557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,6 @@ limitations under the License.
package metrics
import (
"fmt"
"sync"
"github.com/golang/glog"
@ -75,7 +74,6 @@ func newVolumeInUseCollector(
podLister corelisters.PodLister,
pvLister corelisters.PersistentVolumeLister,
pluginMgr *volume.VolumePluginMgr) *volumeInUseCollector {
fmt.Println("Doing this crap again")
return &volumeInUseCollector{pvcLister, podLister, pvLister, pluginMgr}
}