volumes: promote some logs from info -> warning

Part of #40583
pull/6/head
Justin Santa Barbara 2017-02-28 10:43:06 -05:00
parent 90250220a9
commit 35be997c2f
1 changed files with 2 additions and 2 deletions

View File

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