Style fix
This commit is contained in:
parent
6d47227975
commit
ed4850a2b1
|
|
@ -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}",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ namespace Microsoft.AspNet.Server.KestrelTests
|
|||
|
||||
public bool IsEnabled(LogLevel logLevel)
|
||||
{
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
public IDisposable BeginScopeImpl(object state)
|
||||
|
|
|
|||
Loading…
Reference in New Issue