We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1408edb commit bfb3fdbCopy full SHA for bfb3fdb
src/BenchmarksApps/TLS/Kestrel/Program.cs
@@ -14,6 +14,8 @@
14
15
var builder = WebApplication.CreateBuilder(args);
16
builder.Logging.ClearProviders();
17
+builder.Logging.AddConsole();
18
+builder.Logging.SetMinimumLevel(LogLevel.Debug);
19
20
// behavioral
21
var mTlsEnabled = bool.TryParse(builder.Configuration["mTLS"], out var mTlsEnabledConfig) && mTlsEnabledConfig;
0 commit comments