Skip to content

Commit

Permalink
cleanup: add secret name in the log
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx authored and k8s-infra-cherrypick-robot committed Aug 4, 2023
1 parent 7a4846c commit e7080f7
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 @@ -827,7 +827,7 @@ func (d *Driver) GetInfoFromSecret(ctx context.Context, secretName, secretNamesp
spnClientID := strings.TrimSpace(string(secret.Data[storageSPNClientIDField][:]))
spnTenantID := strings.TrimSpace(string(secret.Data[storageSPNTenantIDField][:]))

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, accountSasToken, msiSecret, spnClientSecret, spnClientID, spnTenantID, nil
}

Expand Down

0 comments on commit e7080f7

Please sign in to comment.