Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSander Saares <sander@saares.eu>2022-10-24 21:10:18 +0300
committerGitHub <noreply@github.com>2022-10-24 21:10:18 +0300
commit0ad15635d5c831caaeafdbecab7aabeafd8a7f92 (patch)
tree35b96f84ca71e0068f17ca9197182188514e5378 /src
parentc5ee07392f0b5bb2ccbfd2ee38d484724ad5bbf3 (diff)
Reference ConnectionId always using same casing in log messages (#44705)
Diffstat (limited to 'src')
-rw-r--r--src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
index 8688dfb607..3b4c74c966 100644
--- a/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
+++ b/src/Servers/Kestrel/Core/src/Middleware/HttpsConnectionMiddleware.cs
@@ -555,7 +555,7 @@ internal static partial class HttpsConnectionMiddlewareLoggerExtensions
[LoggerMessage(2, LogLevel.Debug, "Authentication of the HTTPS connection timed out.", EventName = "AuthenticationTimedOut")]
public static partial void AuthenticationTimedOut(this ILogger<HttpsConnectionMiddleware> logger);
- [LoggerMessage(3, LogLevel.Debug, "Connection {connectionId} established using the following protocol: {protocol}", EventName = "HttpsConnectionEstablished")]
+ [LoggerMessage(3, LogLevel.Debug, "Connection {ConnectionId} established using the following protocol: {Protocol}", EventName = "HttpsConnectionEstablished")]
public static partial void HttpsConnectionEstablished(this ILogger<HttpsConnectionMiddleware> logger, string connectionId, SslProtocols protocol);
[LoggerMessage(4, LogLevel.Information, "HTTP/2 over TLS is not supported on Windows versions older than Windows 10 and Windows Server 2016 due to incompatible ciphers or missing ALPN support. Falling back to HTTP/1.1 instead.",