Skip to content

Commit a860d33

Browse files
authored
Merge pull request #1475 from andyzhangx/fix-refine-logs2
[release-1.23] cleanup: refine logs
2 parents 5fa3175 + 451c932 commit a860d33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/blob/nodeserver.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ func (d *Driver) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRe
326326
}
327327

328328
if isNFSProtocol(protocol) {
329-
klog.V(2).Infof("target %v\nprotocol %v\n\nvolumeId %v\ncontext %v\nmountflags %v\nserverAddress %v",
330-
targetPath, protocol, volumeID, attrib, mountFlags, serverAddress)
329+
klog.V(2).Infof("target %v\nprotocol %v\n\nvolumeId %v\nmountflags %v\nserverAddress %v",
330+
targetPath, protocol, volumeID, mountFlags, serverAddress)
331331

332332
mountType := AZNFS
333333
if !d.enableAznfsMount || protocol == NFSv3 {
@@ -383,8 +383,8 @@ func (d *Driver) NodeStageVolume(ctx context.Context, req *csi.NodeStageVolumeRe
383383
args = args + " " + opt
384384
}
385385

386-
klog.V(2).Infof("target %v\nprotocol %v\n\nvolumeId %v\ncontext %v\nmountflags %v\nmountOptions %v\nargs %v\nserverAddress %v",
387-
targetPath, protocol, volumeID, attrib, mountFlags, mountOptions, args, serverAddress)
386+
klog.V(2).Infof("target %v\nprotocol %v\n\nvolumeId %v\nmountflags %v\nmountOptions %v\nargs %v\nserverAddress %v",
387+
targetPath, protocol, volumeID, mountFlags, mountOptions, args, serverAddress)
388388

389389
authEnv = append(authEnv, "AZURE_STORAGE_ACCOUNT="+accountName, "AZURE_STORAGE_BLOB_ENDPOINT="+serverAddress)
390390
if d.enableBlobMockMount {

0 commit comments

Comments
 (0)