Internal\KestrelServerImpl.cs (14)
157Trace.Http2DisabledWithHttp1AndNoTls(options.EndPoint);
161Trace.Http3DisabledWithHttp1AndNoTls(options.EndPoint);
201connectionDelegate = EnforceConnectionLimit(connectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
212Trace.LogError(CoreStrings.DynamicPortOnMultipleTransportsNotSupported);
220multiplexedConnectionDelegate = EnforceConnectionLimit(multiplexedConnectionDelegate, Options.Limits.MaxConcurrentConnections, Trace, ServiceContext.Metrics);
227AddressBindContext = new AddressBindContext(_serverAddresses, Options, Trace, OnBind);
350Trace.LogDebug("Config reload token fired. Checking for changes...");
355if (Trace.IsEnabled(LogLevel.Information))
357Trace.LogInformation("Config changed. Stopping the following endpoints: '{endpoints}'", string.Join("', '", urlsToStop));
383if (Trace.IsEnabled(LogLevel.Information))
385Trace.LogInformation("Config changed. Starting the following endpoints: '{endpoints}'", string.Join("', '", urlsToStart));
396if (Trace.IsEnabled(LogLevel.Critical))
398Trace.LogCritical(0, ex, "Unable to bind to '{url}' on config reload.", listenOption.EndpointConfig!.Url);
406Trace.LogCritical(0, ex, "Unable to reload configuration.");