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 95365f5 commit 4fcd1c4Copy full SHA for 4fcd1c4
src/BenchmarksApps/TechEmpower/PlatformBenchmarks/Program.cs
@@ -7,6 +7,7 @@
7
using System.Threading.Tasks;
8
using Microsoft.AspNetCore.Hosting;
9
using Microsoft.Extensions.Configuration;
10
+using Microsoft.Extensions.Logging;
11
#if DATABASE
12
using Npgsql;
13
#endif
@@ -84,6 +85,11 @@ public static IWebHost BuildWebHost(string[] args)
84
85
86
87
var hostBuilder = new WebHostBuilder()
88
+ .ConfigureLogging(l =>
89
+ {
90
+ l.AddConsole();
91
+ l.SetMinimumLevel(LogLevel.Trace);
92
+ })
93
.UseBenchmarksConfiguration(config)
94
.UseKestrel((context, options) =>
95
{
0 commit comments