Skip to content

Commit

Permalink
Only serialize Response DTO, not wrapping IHttpResult
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Apr 1, 2016
1 parent 9001429 commit 91ffda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ServiceStack/Host/InMemoryRollingRequestLogger.cs
Expand Up @@ -94,7 +94,7 @@ protected RequestLogEntry CreateEntry(IRequest request, object requestDto, objec
if (!response.IsErrorResponse())
{
if (EnableResponseTracking)
entry.ResponseDto = response;
entry.ResponseDto = response.GetResponseDto();
}
else
{
Expand Down

0 comments on commit 91ffda3

Please sign in to comment.