Remove crappy fmt.Println

This commit is contained in:
Matthew Wong 2018-07-06 12:54:34 -04:00
parent 91b729342d
commit ddba1b5811

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}
}