diff --git a/pkg/volume/plugins.go b/pkg/volume/plugins.go index f0ca6174854..90b7efd9502 100644 --- a/pkg/volume/plugins.go +++ b/pkg/volume/plugins.go @@ -872,10 +872,10 @@ func (pm *VolumePluginMgr) FindExpandablePluginBySpec(spec *Spec) (ExpandableVol if spec.IsKubeletExpandable() { // for kubelet expandable volumes, return a noop plugin that // returns success for expand on the controller - klog.Warningf("FindExpandablePluginBySpec(%s) -> returning noopExpandableVolumePluginInstance", spec.Name()) + klog.V(4).Infof("FindExpandablePluginBySpec(%s) -> returning noopExpandableVolumePluginInstance", spec.Name()) return &noopExpandableVolumePluginInstance{spec}, nil } - klog.Warningf("FindExpandablePluginBySpec(%s) -> err:%v", spec.Name(), err) + klog.V(4).Infof("FindExpandablePluginBySpec(%s) -> err:%v", spec.Name(), err) return nil, err }