update HTTP
This commit is contained in:
parent
6b5665f415
commit
07031bf459
2 changed files with 3 additions and 4 deletions
2
HTTP
2
HTTP
|
@ -1 +1 @@
|
|||
Subproject commit d94fa95162fee2d986f3c29fc3e04d4d85dacf9d
|
||||
Subproject commit 523cdb8ad2b0053ba1789770429aa2b1fef721ef
|
|
@ -75,11 +75,10 @@ static class Program
|
|||
/// <summary>
|
||||
/// Logs a request to the console.
|
||||
/// </summary>
|
||||
static Task<HttpResponse?> LogRequest(HttpRequest req)
|
||||
static HttpResponse? LogRequest(HttpRequest req)
|
||||
{
|
||||
Console.WriteLine($"{req.Endpoint.Address}: {req.Method} {req.Path}");
|
||||
|
||||
return Task.FromResult<HttpResponse?>(null);
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue