C
C#6mo ago
Jimenemex

Kestrel Options

Can UseConnectionLogging be set on appsettings.json files for Kestrel?
3 Replies
JakenVeina
JakenVeina6mo ago
KestrelServerOptions.Configure Method (Microsoft.AspNetCore.Server....
Creates a configuration loader for setting up Kestrel that takes an IConfiguration as input. This configuration must be scoped to the configuration section for Kestrel.
JakenVeina
JakenVeina6mo ago
and there's nothing on KestrelServerOptions that looks like it would affect that plus, a quick search of the source code doesn't show .UseConnectionLogging() getting called dynamically by any config code
Jimenemex
Jimenemex6mo ago
thank you