Skip to content
This repository was archived by the owner on Dec 20, 2018. It is now read-only.

Commit 9ff653f

Browse files
authored
React to logging in DI changes (#239)
1 parent 302308c commit 9ff653f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

samples/ResponseCompressionSample/Startup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ public static void Main(string[] args)
7272
.UseKestrel()
7373
.ConfigureLogging(factory =>
7474
{
75-
factory.AddConsole(LogLevel.Debug);
75+
factory.AddConsole()
76+
.SetMinimumLevel(LogLevel.Debug);
7677
})
7778
.UseStartup<Startup>()
7879
.Build();

0 commit comments

Comments
 (0)