Skip to content

Commit

Permalink
minor refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmrdavid committed Jun 13, 2024
1 parent caf746e commit 10ac5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebJobs.Extensions.DurableTask/EndToEndTraceHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private string SanitizeString(string? rawPayload, out string iloggerPayload, boo

private string SanitizeException(Exception? exception, out string iloggerExceptionString, bool isReplay = false)
{
string exceptionString = exception != null ? exception.toString() : string.Empty;
string exceptionString = exception != null ? exception.ToString() : string.Empty;
if (exception is OrchestrationFailureException orchestrationFailureException)
{
exceptionString = orchestrationFailureException.Details;
Expand Down

0 comments on commit 10ac5a9

Please sign in to comment.