From e62767ab9df8111437b158c2065d989b400d9588 Mon Sep 17 00:00:00 2001 From: John Luo Date: Mon, 7 Dec 2015 18:00:14 -0800 Subject: [PATCH] Fixing typo in previous commit --- samples/IISSample/Startup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/IISSample/Startup.cs b/samples/IISSample/Startup.cs index 09c8d412f1..46124582f2 100644 --- a/samples/IISSample/Startup.cs +++ b/samples/IISSample/Startup.cs @@ -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);