Fixing typo in previous commit

This commit is contained in:
John Luo 2015-12-07 18:00:14 -08:00
parent abdd98cd1f
commit e62767ab9d
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ namespace IISSample
app.Run(async (context) =>
{
logger.Debug("Received request: " + context.Request.Method + " " + context.Request.Path);
logger.LogDebug("Received request: " + context.Request.Method + " " + context.Request.Path);
context.Response.ContentType = "text/plain";
await context.Response.WriteAsync("Hello World - " + DateTimeOffset.Now + Environment.NewLine);