1 instantiation of KestrelTrace
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\KestrelServerImpl.cs (1)
81var trace = new KestrelTrace(loggerFactory);
36 references to KestrelTrace
Microsoft.AspNetCore.Server.Kestrel.Core (35)
Internal\ConnectionDispatcher.cs (1)
24private KestrelTrace Log => _serviceContext.Log;
Internal\Http\Http1OutputProducer.cs (2)
30private readonly KestrelTrace _log; 74KestrelTrace log,
Internal\Http\HttpProtocol.cs (1)
101protected KestrelTrace Log => ServiceContext.Log;
Internal\Http\MessageBody.cs (1)
46protected KestrelTrace Log => _context.ServiceContext.Log;
Internal\Http2\Http2Connection.cs (1)
192public KestrelTrace Log => _context.ServiceContext.Log;
Internal\Http2\Http2FrameWriter.cs (1)
64private readonly KestrelTrace _log;
Internal\Http2\Http2OutputProducer.cs (1)
20private readonly KestrelTrace _log;
Internal\Http3\Http3Connection.cs (1)
94private KestrelTrace Log => _context.ServiceContext.Log;
Internal\Http3\Http3ControlStream.cs (1)
70public KestrelTrace Log => _context.ServiceContext.Log;
Internal\Http3\Http3FrameWriter.cs (2)
39private readonly KestrelTrace _log; 59public Http3FrameWriter(ConnectionContext connectionContext, ITimeoutControl timeoutControl, MinDataRate? minResponseDataRate, MemoryPool<byte> memoryPool, KestrelTrace log, IStreamIdFeature streamIdFeature, Http3PeerSettings clientPeerSettings, IHttp3Stream http3Stream)
Internal\Http3\Http3OutputProducer.cs (2)
21private readonly KestrelTrace _log; 40KestrelTrace log)
Internal\HttpConnection.cs (1)
44private KestrelTrace Log => _context.ServiceContext.Log;
Internal\Infrastructure\ConnectionManager.cs (3)
15private readonly KestrelTrace _trace; 17public ConnectionManager(KestrelTrace trace, long? upgradedConnectionLimit) 22public ConnectionManager(KestrelTrace trace, ResourceCounter upgradedConnections)
Internal\Infrastructure\Heartbeat.cs (2)
16private readonly KestrelTrace _trace; 21public Heartbeat(IHeartbeatHandler[] callbacks, TimeProvider timeProvider, IDebugger debugger, KestrelTrace trace, TimeSpan interval)
Internal\Infrastructure\KestrelConnection.cs (2)
27KestrelTrace logger, 38protected KestrelTrace Logger { get; }
Internal\Infrastructure\KestrelConnectionOfT.cs (1)
21KestrelTrace logger,
Internal\Infrastructure\PipeWriterHelpers\TimingPipeFlusher.cs (2)
21private readonly KestrelTrace _log; 25KestrelTrace log)
Internal\Infrastructure\TransportManager.cs (1)
34private KestrelTrace Trace => _serviceContext.Log;
Internal\KestrelServerImpl.cs (4)
81var trace = new KestrelTrace(loggerFactory); 116private KestrelTrace Trace => ServiceContext.Log; 428private static ConnectionDelegate EnforceConnectionLimit(ConnectionDelegate innerDelegate, long? connectionLimit, KestrelTrace trace, KestrelMetrics metrics) 438private static MultiplexedConnectionDelegate EnforceConnectionLimit(MultiplexedConnectionDelegate innerDelegate, long? connectionLimit, KestrelTrace trace, KestrelMetrics metrics)
Internal\ServiceContext.cs (1)
18public KestrelTrace Log { get; set; } = default!;
Internal\WebTransport\WebTransportStream.cs (1)
23private readonly KestrelTrace _log;
Middleware\ConnectionLimitMiddleware.cs (3)
15private readonly KestrelTrace _trace; 18public ConnectionLimitMiddleware(Func<T, Task> next, long connectionLimit, KestrelTrace trace, KestrelMetrics metrics) 24internal ConnectionLimitMiddleware(Func<T, Task> next, ResourceCounter concurrentConnectionCounter, KestrelTrace trace, KestrelMetrics metrics)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
Http1\Http1ConnectionTests.cs (1)
836var previousLog = _serviceContext.Log;