Skip to content

Commit 3c4464b

Browse files
authored
Merge pull request #1656 from kubernetes-sigs/songjiaxun-patch-1
Update isVolumePathMounted log message
2 parents 33389c1 + 2db8ef4 commit 3c4464b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/gce-pd-csi-driver/node.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func getDefaultFsType() string {
9191
}
9292
func (ns *GCENodeServer) isVolumePathMounted(path string) bool {
9393
notMnt, err := ns.Mounter.Interface.IsLikelyNotMountPoint(path)
94-
klog.V(4).Infof("NodePublishVolume check volume path %s is mounted %t: error %v", path, !notMnt, err)
94+
klog.V(4).Infof("Checking volume path %s is mounted %t: error %v", path, !notMnt, err)
9595
if err == nil && !notMnt {
9696
// TODO(#95): check if mount is compatible. Return OK if it is, or appropriate error.
9797
/*

0 commit comments

Comments
 (0)