From 00e6f240ec5e0177c2f6728640cad4430d2f780e Mon Sep 17 00:00:00 2001 From: Anish Ramasekar Date: Thu, 16 Sep 2021 20:19:59 +0000 Subject: [PATCH] update the log message for mount windows Signed-off-by: Anish Ramasekar --- staging/src/k8s.io/mount-utils/mount_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/mount-utils/mount_windows.go b/staging/src/k8s.io/mount-utils/mount_windows.go index b5bead08581..3286a69c46b 100644 --- a/staging/src/k8s.io/mount-utils/mount_windows.go +++ b/staging/src/k8s.io/mount-utils/mount_windows.go @@ -217,7 +217,7 @@ func removeSMBMapping(remotepath string) (string, error) { // Unmount unmounts the target. func (mounter *Mounter) Unmount(target string) error { - klog.V(4).Infof("azureMount: Unmount target (%q)", target) + klog.V(4).Infof("Unmount target (%q)", target) target = NormalizeWindowsPath(target) if output, err := exec.Command("cmd", "/c", "rmdir", target).CombinedOutput(); err != nil { klog.Errorf("rmdir failed: %v, output: %q", err, string(output))