diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler.go b/pkg/controller/volume/attachdetach/reconciler/reconciler.go index 3b56bfcfa1b..e66253cfd0f 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler.go @@ -225,7 +225,7 @@ func (rc *reconciler) reconcile() { if !timeout { glog.Infof(attachedVolume.GenerateMsgDetailed("attacherDetacher.DetachVolume started", "")) } else { - glog.Infof(attachedVolume.GenerateMsgDetailed("attacherDetacher.DetachVolume started", fmt.Sprintf("This volume is not safe to detach, but maxWaitForUnmountDuration %v expired, force detaching", rc.maxWaitForUnmountDuration))) + glog.Warningf(attachedVolume.GenerateMsgDetailed("attacherDetacher.DetachVolume started", fmt.Sprintf("This volume is not safe to detach, but maxWaitForUnmountDuration %v expired, force detaching", rc.maxWaitForUnmountDuration))) } } if err != nil && !exponentialbackoff.IsExponentialBackoff(err) { @@ -282,6 +282,6 @@ func (rc *reconciler) reconcile() { // Update Node Status err := rc.nodeStatusUpdater.UpdateNodeStatuses() if err != nil { - glog.Infof("UpdateNodeStatuses failed with: %v", err) + glog.Warningf("UpdateNodeStatuses failed with: %v", err) } }