Skip to content

Commit

Permalink
fix(DID): removed authentication details from logs DIM response (ecli…
Browse files Browse the repository at this point in the history
…pse-tractusx#951)

Reviewed-By: Phil Schneider <info@philschneider.de>
  • Loading branch information
dhiren-singh-007 committed Aug 28, 2024
1 parent 983d132 commit 356475f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ public async Task ProcessClearinghouseResponseAsync(ClearinghouseResponseData da
/// <inheritdoc />
public async Task ProcessDimResponseAsync(string bpn, DimWalletData data, CancellationToken cancellationToken)
{
logger.LogInformation("Process Dim called with the following data {Data}", data.ToString().Replace(Environment.NewLine, string.Empty));
logger.LogInformation("Process Dim called with the following data {Data}", data.DidDocument.RootElement.GetRawText().Replace(Environment.NewLine, string.Empty));

await dimBusinessLogic.ProcessDimResponse(bpn, data, cancellationToken).ConfigureAwait(ConfigureAwaitOptions.None);
await portalRepositories.SaveAsync().ConfigureAwait(ConfigureAwaitOptions.None);
Expand Down

0 comments on commit 356475f

Please sign in to comment.