You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Servers/Kestrel/Core/src/Internal/Infrastructure/KestrelTrace.cs
+12-7Lines changed: 12 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -59,10 +59,10 @@ internal class KestrelTrace : IKestrelTrace
59
59
LoggerMessage.Define<string>(LogLevel.Warning,newEventId(24,"ConnectionRejected"),@"Connection id ""{ConnectionId}"" rejected because the maximum number of concurrent connections has been reached.");
LoggerMessage.Define<string,string>(LogLevel.Debug,newEventId(25,"RequestBodyStart"),@"Connection id ""{ConnectionId}"", Request id ""{TraceIdentifier}"": started reading request body.");
62
+
LoggerMessage.Define<string,string>(LogLevel.Debug,newEventId(25,"RequestBodyStart"),@"Connection id ""{ConnectionId}"", Request id ""{TraceIdentifier}"": started reading request body.",skipEnabledCheck:true);
LoggerMessage.Define<string,string>(LogLevel.Debug,newEventId(26,"RequestBodyDone"),@"Connection id ""{ConnectionId}"", Request id ""{TraceIdentifier}"": done reading request body.");
65
+
LoggerMessage.Define<string,string>(LogLevel.Debug,newEventId(26,"RequestBodyDone"),@"Connection id ""{ConnectionId}"", Request id ""{TraceIdentifier}"": done reading request body.",skipEnabledCheck:true);
LoggerMessage.Define<string,string?,double>(LogLevel.Debug,newEventId(27,"RequestBodyMinimumDataRateNotSatisfied"),@"Connection id ""{ConnectionId}"", Request id ""{TraceIdentifier}"": the request timed out because it was not sent by the client at a minimum of {Rate} bytes/second.");
@@ -102,11 +102,13 @@ internal class KestrelTrace : IKestrelTrace
0 commit comments