Style fix

This commit is contained in:
Ivan Derevyanko 2015-09-05 18:32:16 +02:00
parent 6d47227975
commit ed4850a2b1
3 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,9 @@ namespace SampleApp
public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory)
{
loggerFactory.MinimumLevel = LogLevel.Debug;
loggerFactory.AddConsole(LogLevel.Debug);
app.Run(context =>
{
Console.WriteLine("{0} {1}{2}{3}",

View File

@ -2,7 +2,6 @@
"version": "1.0.0-*",
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-*",
"Microsoft.Framework.Logging.Abstractions": "1.0.0-*",
"Microsoft.Framework.Logging.Console": "1.0.0-*"
},
"frameworks": {

View File

@ -12,7 +12,7 @@ namespace Microsoft.AspNet.Server.KestrelTests
public bool IsEnabled(LogLevel logLevel)
{
return true;
return false;
}
public IDisposable BeginScopeImpl(object state)