Internal\KestrelServerImpl.cs (14)
153Trace.Http2DisabledWithHttp1AndNoTls(options.EndPoint);
157Trace.Http3DisabledWithHttp1AndNoTls(options.EndPoint);
197connectionDelegate = EnforceConnectionLimit(connectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
208Trace.LogError(CoreStrings.DynamicPortOnMultipleTransportsNotSupported);
216multiplexedConnectionDelegate = EnforceConnectionLimit(multiplexedConnectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
223AddressBindContext = new AddressBindContext(_serverAddresses, Options, Trace, OnBind);
346Trace.LogDebug("Config reload token fired. Checking for changes...");
351if (Trace.IsEnabled(LogLevel.Information))
353Trace.LogInformation("Config changed. Stopping the following endpoints: '{endpoints}'", string.Join("', '", urlsToStop));
379if (Trace.IsEnabled(LogLevel.Information))
381Trace.LogInformation("Config changed. Starting the following endpoints: '{endpoints}'", string.Join("', '", urlsToStart));
392if (Trace.IsEnabled(LogLevel.Critical))
394Trace.LogCritical(0, ex, "Unable to bind to '{url}' on config reload.", listenOption.EndpointConfig!.Url);
402Trace.LogCritical(0, ex, "Unable to reload configuration.");