31 references to QuicLog
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (31)
_generated\0\LoggerMessage.g.cs (6)
22private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType, global::System.Exception?> __AcceptedStreamCoreCallback = 23global::Microsoft.Extensions.Logging.LoggerMessage.Define<string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(2, "AcceptedStream"), "Stream id \"{ConnectionId}\" type {StreamType} accepted.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true }); 30private static partial void AcceptedStreamCore(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType streamType) 35private static readonly global::System.Action<global::Microsoft.Extensions.Logging.ILogger, string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType, global::System.Exception?> __ConnectedStreamCoreCallback = 36global::Microsoft.Extensions.Logging.LoggerMessage.Define<string, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType>(global::Microsoft.Extensions.Logging.LogLevel.Debug, new global::Microsoft.Extensions.Logging.EventId(3, "ConnectedStream"), "Stream id \"{ConnectionId}\" type {StreamType} connected.", new global::Microsoft.Extensions.Logging.LogDefineOptions() { SkipEnabledCheck = true }); 43private static partial void ConnectedStreamCore(global::Microsoft.Extensions.Logging.ILogger logger, string connectionId, global::Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.Internal.QuicLog.StreamType streamType)
Internal\QuicConnectionContext.cs (6)
87QuicLog.ConnectionAbort(_log, this, resolvedErrorCode, abortReason.Message); 122QuicLog.StreamReused(_log, context); 127QuicLog.AcceptedStream(_log, context); 135QuicLog.ConnectionAborted(_log, this, ex.ApplicationErrorCode.GetValueOrDefault(), ex); 237QuicLog.ConnectedStream(_log, context); 274QuicLog.StreamPooled(_log, stream);
Internal\QuicConnectionListener.cs (7)
110QuicLog.ConnectionListenerCertificateNotSpecified(_log); 114QuicLog.ConnectionListenerApplicationProtocolsNotSpecified(_log); 122QuicLog.ConnectionListenerStarting(_log, _quicListenerOptions.ListenEndPoint); 172QuicLog.AcceptedConnection(_log, connectionContext); 179QuicLog.ConnectionListenerAborted(_log, ex); 185QuicLog.ConnectionListenerAborted(_log, ex); 193QuicLog.ConnectionListenerAcceptConnectionFailed(_log, ex);
Internal\QuicStreamContext.cs (10)
256QuicLog.StreamPause(_log, this); 263QuicLog.StreamResume(_log, this); 277QuicLog.StreamAbortedRead(_log, this, ex.ApplicationErrorCode.GetValueOrDefault()); 287QuicLog.StreamTimeoutRead(_log, this); 301QuicLog.StreamError(_log, this, error); 438QuicLog.StreamAbortedWrite(_log, this, ex.ApplicationErrorCode.GetValueOrDefault()); 448QuicLog.StreamTimeoutWrite(_log, this); 464QuicLog.StreamError(_log, this, unexpectedError); 505QuicLog.StreamAbort(_log, this, resolvedErrorCode, abortReason.Message); 529QuicLog.StreamShutdownWrite(_log, this, _shutdownReason.Message);
Internal\QuicStreamContext.FeatureCollection.cs (2)
70QuicLog.StreamAbortRead(_log, this, errorCode, abortReason.Message); 92QuicLog.StreamAbortWrite(_log, this, errorCode, abortReason.Message);