From 35be997c2fc4733d4c2cba63941b1562541118f2 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Tue, 28 Feb 2017 10:43:06 -0500 Subject: [PATCH] volumes: promote some logs from info -> warning Part of #40583 --- pkg/controller/volume/attachdetach/reconciler/reconciler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler.go b/pkg/controller/volume/attachdetach/reconciler/reconciler.go index ae0a895387f..3d3b11a427b 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler.go @@ -220,7 +220,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) { @@ -270,6 +270,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) } }