Skip to content

Commit b161c6a

Browse files
committed
chore: reduce GetFileShareQuota error log verbosity to V(6)
1 parent feadfaa commit b161c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/azurefile/azurefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ func (d *Driver) CreateFileShare(ctx context.Context, accountOptions *storage.Ac
10891089
klog.V(2).Infof("file share(%s) already exists, skip creating", shareOptions.Name)
10901090
return true, nil
10911091
}
1092-
klog.V(2).Infof("GetFileShareQuota(%s) on account(%s) returned error(%v), proceeding to create", shareOptions.Name, accountOptions.Name, quotaErr)
1092+
klog.V(6).Infof("GetFileShareQuota(%s) on account(%s) returned error(%v), proceeding to create", shareOptions.Name, accountOptions.Name, quotaErr)
10931093

10941094
if err = fileClient.CreateFileShare(ctx, shareOptions); err != nil {
10951095
if strings.Contains(err.Error(), "ShareAlreadyExists") {

0 commit comments

Comments
 (0)