Reacting to verbose rename

This commit is contained in:
John Luo 2015-12-07 17:42:13 -08:00
parent 706ff04160
commit dff3a4f231
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ namespace SampleApp
//ksi.ThreadCount = 4;
ksi.NoDelay = true;
loggerFactory.AddConsole(LogLevel.Debug);
loggerFactory.AddConsole(LogLevel.Trace);
var testCertPath = Path.Combine(
env.ApplicationBasePath,

View File

@ -123,7 +123,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Filter
builder.Append((char)buffer[i]);
}
_logger.LogVerbose(builder.ToString());
_logger.LogDebug(builder.ToString());
}
}
}