From bc4a514d9e4da1c01e369f59306ec3da0d7d0b41 Mon Sep 17 00:00:00 2001 From: Ryan Brandenburg Date: Thu, 19 Oct 2017 16:20:30 -0700 Subject: [PATCH] Better message for integration tests --- .../Common/LoggingHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/LoggingHandler.cs b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/LoggingHandler.cs index 31d52aed07..a1dc7e24db 100644 --- a/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/LoggingHandler.cs +++ b/src/Microsoft.AspNetCore.Server.IntegrationTesting/Common/LoggingHandler.cs @@ -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; } }