Fixing typo in previous commit
This commit is contained in:
parent
abdd98cd1f
commit
e62767ab9d
|
|
@ -17,7 +17,7 @@ namespace IISSample
|
||||||
|
|
||||||
app.Run(async (context) =>
|
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";
|
context.Response.ContentType = "text/plain";
|
||||||
await context.Response.WriteAsync("Hello World - " + DateTimeOffset.Now + Environment.NewLine);
|
await context.Response.WriteAsync("Hello World - " + DateTimeOffset.Now + Environment.NewLine);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue