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