Skip to content

Commit

Permalink
Added Debug>Trace change in base class
Browse files Browse the repository at this point in the history
  • Loading branch information
phillip-haydon committed Aug 22, 2024
1 parent 8418566 commit 629982e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ protected virtual async Task ProcessOfflineCrashReports()
}
catch (Exception ex)
{
Debug.WriteLine($"Exception sending offline error [{crashReport.Id}]: {ex}");
Trace.WriteLine($"Exception sending offline error [{crashReport.Id}]: {ex}");
throw;
}
}
}
catch (Exception ex)
{
Debug.WriteLine($"Exception sending offline errors: {ex}");
Trace.WriteLine($"Exception sending offline errors: {ex}");
}
}

Expand Down

0 comments on commit 629982e

Please sign in to comment.