Better message for integration tests

This commit is contained in:
Ryan Brandenburg 2017-10-19 16:20:30 -07:00
parent b207658f22
commit bc4a514d9e
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
}
catch (Exception ex)
{
_logger.LogError(0, ex, "Exception while sending '{method} {url}'", request.Method, request.RequestUri, request.RequestUri);
_logger.LogError(0, ex, "Exception while sending '{method} {url}' : {exception}", request.Method, request.RequestUri, ex);
throw;
}
}