Skip to content

Commit

Permalink
fix(did): applied new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhiren-singh-007 committed Aug 26, 2024
1 parent bcb8125 commit 7591945
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,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.ToString()?.Replace(Environment.NewLine, string.Empty));

Check warning

Code scanning / CodeQL

Use of default ToString() Warning

Default 'ToString()':
JsonDocument
inherits 'ToString()' from 'Object', and so is not suitable for printing.

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

0 comments on commit 7591945

Please sign in to comment.