Internal\KestrelServerImpl.cs (14)
155Trace.Http2DisabledWithHttp1AndNoTls(options.EndPoint);
159Trace.Http3DisabledWithHttp1AndNoTls(options.EndPoint);
199connectionDelegate = EnforceConnectionLimit(connectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
210Trace.LogError(CoreStrings.DynamicPortOnMultipleTransportsNotSupported);
218multiplexedConnectionDelegate = EnforceConnectionLimit(multiplexedConnectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
225AddressBindContext = new AddressBindContext(_serverAddresses, Options, Trace, OnBind);
348Trace.LogDebug("Config reload token fired. Checking for changes...");
353if (Trace.IsEnabled(LogLevel.Information))
355Trace.LogInformation("Config changed. Stopping the following endpoints: '{endpoints}'", string.Join("', '", urlsToStop));
381if (Trace.IsEnabled(LogLevel.Information))
383Trace.LogInformation("Config changed. Starting the following endpoints: '{endpoints}'", string.Join("', '", urlsToStart));
394if (Trace.IsEnabled(LogLevel.Critical))
396Trace.LogCritical(0, ex, "Unable to bind to '{url}' on config reload.", listenOption.EndpointConfig!.Url);
404Trace.LogCritical(0, ex, "Unable to reload configuration.");