exceptron stores reference ID in exception

This commit is contained in:
kay.one 2013-08-31 13:32:26 -07:00
parent 4465d50a31
commit bf415563d4
1 changed files with 5 additions and 1 deletions

View File

@ -149,7 +149,11 @@ namespace Exceptron.Client
SetHttpInfo(exceptionData, report);
SetEnviromentInfo(report);
return RestClient.Put<ExceptionResponse>(Configuration.Host, report);
var exceptionResponse = RestClient.Put<ExceptionResponse>(Configuration.Host, report);
exceptionData.Exception.Data["et"] = exceptionResponse.RefId;
return exceptionResponse;
}
catch (Exception e)
{