Skip to content

Commit

Permalink
Send the whole exception to Buddy
Browse files Browse the repository at this point in the history
  • Loading branch information
flagbug committed Jun 23, 2014
1 parent 95691eb commit 772a0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Espera/Espera.Core/Analytics/AnalyticsClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public async Task<bool> RecordCrashAsync(Exception exception)

try
{
await this.client.RecordErrorAsync(exception.Message, logId, exception.StackTrace);
await this.client.RecordErrorAsync(exception.Message, logId, exception.ToString());
}

catch (Exception ex)
Expand All @@ -136,7 +136,7 @@ public async Task RecordErrorAsync(Exception exception, bool uploadLogFile = tru

try
{
await this.client.RecordErrorAsync(exception.Message, logId, exception.StackTrace);
await this.client.RecordErrorAsync(exception.Message, logId, exception.ToString());
}

catch (Exception ex)
Expand Down

0 comments on commit 772a0df

Please sign in to comment.