mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 19:31:44 +00:00
Merge pull request #42252 from justinsb/volumes_raise_loglevels
Automatic merge from submit-queue (batch tested with PRs 42252, 42251, 42249, 47512, 47887) volumes: promote some logs from info -> warning Part of #40583 ```release-note NONE ```
This commit is contained in:
commit
bebe346d5f
@ -225,7 +225,7 @@ func (rc *reconciler) reconcile() {
|
|||||||
if !timeout {
|
if !timeout {
|
||||||
glog.Infof(attachedVolume.GenerateMsgDetailed("attacherDetacher.DetachVolume started", ""))
|
glog.Infof(attachedVolume.GenerateMsgDetailed("attacherDetacher.DetachVolume started", ""))
|
||||||
} else {
|
} 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) {
|
if err != nil && !exponentialbackoff.IsExponentialBackoff(err) {
|
||||||
@ -282,6 +282,6 @@ func (rc *reconciler) reconcile() {
|
|||||||
// Update Node Status
|
// Update Node Status
|
||||||
err := rc.nodeStatusUpdater.UpdateNodeStatuses()
|
err := rc.nodeStatusUpdater.UpdateNodeStatuses()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.Infof("UpdateNodeStatuses failed with: %v", err)
|
glog.Warningf("UpdateNodeStatuses failed with: %v", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user