Skip to content

Commit

Permalink
Merge pull request #994 from andyzhangx/add-secret-name-log-1.19
Browse files Browse the repository at this point in the history
[release-1.19] cleanup: add secret name in the log
  • Loading branch information
andyzhangx authored Aug 5, 2023
2 parents e488183 + 69cca0d commit bdc9975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/blob/blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ func (d *Driver) GetStorageAccountFromSecret(secretName, secretNamespace string)
accountName := strings.TrimSpace(string(secret.Data[defaultSecretAccountName][:]))
accountKey := strings.TrimSpace(string(secret.Data[defaultSecretAccountKey][:]))

klog.V(4).Infof("got storage account(%s) from secret", accountName)
klog.V(4).Infof("got storage account(%s) from secret(%s) namespace(%s)", accountName, secretName, secretNamespace)
return accountName, accountKey, nil
}

Expand Down

0 comments on commit bdc9975

Please sign in to comment.