Removing filter to fix build break

This commit is contained in:
Kiran Challa 2017-05-05 15:16:55 -07:00
parent d488a989a6
commit 067cd90fef
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ namespace MusicStore
{ {
var logLevel = string.Equals(environment, "Development", StringComparison.Ordinal) ? LogLevel.Information : LogLevel.Warning; var logLevel = string.Equals(environment, "Development", StringComparison.Ordinal) ? LogLevel.Information : LogLevel.Warning;
factory.AddConsole((name, level) => level >= logLevel); factory.AddConsole();
}); });
var host = builder.Build(); var host = builder.Build();