From 1fd703e56f4d09c4cc94c8c52692ad586ff9d4b9 Mon Sep 17 00:00:00 2001 From: Brennan Date: Thu, 21 Jan 2016 09:51:02 -0800 Subject: [PATCH] React to Logging API changes --- .../ForwardedTlsConnectionFeature.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.IISPlatformHandler/ForwardedTlsConnectionFeature.cs b/src/Microsoft.AspNetCore.IISPlatformHandler/ForwardedTlsConnectionFeature.cs index af78d0716d..feb99ebe91 100644 --- a/src/Microsoft.AspNetCore.IISPlatformHandler/ForwardedTlsConnectionFeature.cs +++ b/src/Microsoft.AspNetCore.IISPlatformHandler/ForwardedTlsConnectionFeature.cs @@ -36,7 +36,7 @@ namespace Microsoft.AspNetCore.IISPlatformHandler } catch (Exception ex) { - _logger.LogWarning("Failed to read the client certificate.", ex); + _logger.LogWarning(0, ex, "Failed to read the client certificate."); } } return _certificate;