Merge branch 'rel/2.0.0-preview2' into dev

This commit is contained in:
Pavel Krymets 2017-06-02 14:23:59 -07:00
commit 3b7f8225b3
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ namespace ResponseCompressionSample
.UseKestrel()
.ConfigureLogging(factory =>
{
factory.AddConsole(LogLevel.Debug);
factory.AddConsole()
.SetMinimumLevel(LogLevel.Debug);
})
.UseStartup<Startup>()
.Build();