mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 03:41:45 +00:00
kubelet: increase log level for Path does not exist message
This commit is contained in:
parent
85e46622bc
commit
205adec698
@ -303,7 +303,7 @@ func (kl *Kubelet) getPodVolumePathListFromDisk(podUID types.UID) ([]string, err
|
||||
if pathExists, pathErr := mount.PathExists(podVolDir); pathErr != nil {
|
||||
return volumes, fmt.Errorf("error checking if path %q exists: %v", podVolDir, pathErr)
|
||||
} else if !pathExists {
|
||||
klog.InfoS("Path does not exist", "path", podVolDir)
|
||||
klog.V(6).InfoS("Path does not exist", "path", podVolDir)
|
||||
return volumes, nil
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user