diff --git a/ProjectLighthouse/Startup.cs b/ProjectLighthouse/Startup.cs index 9aabd7d0..f8ecda62 100644 --- a/ProjectLighthouse/Startup.cs +++ b/ProjectLighthouse/Startup.cs @@ -37,10 +37,10 @@ namespace ProjectLighthouse { // Logs every request and the response to it // Example: "200: GET /LITTLEBIGPLANETPS3_XML/news" - // Example: "404: GET /asdasd" + // Example: "404: GET /asdasd?query=osucookiezi727ppbluezenithtopplayhdhr" app.Use(async (context, next) => { await next(); // Handle the request so we can get the status code from it - Console.WriteLine($"{context.Response.StatusCode}: {context.Request.Method} {context.Request.Path}"); + Console.WriteLine($"{context.Response.StatusCode}: {context.Request.Method} {context.Request.Path}{context.Request.QueryString}"); }); app.UseRouting();