mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2025-04-02 14:08:36 -04:00
15 lines
426 B
C#
15 lines
426 B
C#
namespace Minecraft_Realms_Emulator.Middlewares
|
|
{
|
|
public class RouteLoggingMiddleware(RequestDelegate next)
|
|
{
|
|
private readonly RequestDelegate _next = next;
|
|
|
|
public async Task Invoke(HttpContext httpContext)
|
|
{
|
|
Console.WriteLine($"{httpContext.Request.Method} {httpContext.Request.Path}{httpContext.Request.QueryString}");
|
|
|
|
await _next(httpContext);
|
|
}
|
|
}
|
|
}
|