aboutsummaryrefslogtreecommitdiff
path: root/pkg/driver/nodeserver.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-09-04 00:19:40 -0700
committerChris Lu <chris.lu@gmail.com>2020-09-04 00:19:40 -0700
commit9155a07345eb3bc1fc7c5e288640c085c3256200 (patch)
tree4462123bdd943e56a3bd10788ae4ad1552db5682 /pkg/driver/nodeserver.go
parentbb16388537732f8464f818e23f87f8d11c323763 (diff)
downloadseaweedfs-csi-driver-9155a07345eb3bc1fc7c5e288640c085c3256200.tar.xz
seaweedfs-csi-driver-9155a07345eb3bc1fc7c5e288640c085c3256200.zip
add logging
Diffstat (limited to 'pkg/driver/nodeserver.go')
-rw-r--r--pkg/driver/nodeserver.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/driver/nodeserver.go b/pkg/driver/nodeserver.go
index f17a84b..82e1aed 100644
--- a/pkg/driver/nodeserver.go
+++ b/pkg/driver/nodeserver.go
@@ -25,7 +25,7 @@ func (ns *NodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublis
// mount the fs here
targetPath := req.GetTargetPath()
- glog.V(4).Infof("NodePublishVolume volume %s to %s", volumeID, targetPath)
+ glog.V(0).Infof("NodePublishVolume volume %s to %s", volumeID, targetPath)
// Check arguments
if req.GetVolumeCapability() == nil {
@@ -69,7 +69,7 @@ func (ns *NodeServer) NodePublishVolume(ctx context.Context, req *csi.NodePublis
return nil, status.Error(codes.Internal, err.Error())
}
- glog.V(4).Infof("volume %s successfully mounted to %s", volumeID, targetPath)
+ glog.V(0).Infof("volume %s successfully mounted to %s", volumeID, targetPath)
return &csi.NodePublishVolumeResponse{}, nil
}