From 9fec1491e7cd0a8e1aa8a93e9dd185d578edbab1 Mon Sep 17 00:00:00 2001 From: Lucca Faria Ferri Date: Fri, 10 Feb 2023 10:15:42 -0800 Subject: [PATCH] parsing fix. --- src/DiIiS-NA/REST/RestSession.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DiIiS-NA/REST/RestSession.cs b/src/DiIiS-NA/REST/RestSession.cs index 1e6ce67..4e53e80 100644 --- a/src/DiIiS-NA/REST/RestSession.cs +++ b/src/DiIiS-NA/REST/RestSession.cs @@ -67,7 +67,7 @@ namespace DiIiS_NA.REST else { #if DEBUG - Logger.Info($"$[red]$[404] REST Request: $[/]$ {httpRequest.Method.SafeAnsi()} {httpRequest.Path.SafeAnsi()}"); + Logger.Info($"$[red]$404 - REST Request: $[/]$ {httpRequest.Method.SafeAnsi()} {httpRequest.Path.SafeAnsi()}"); SendResponseHtml(HttpCode.NotFound, "404 Not Found"); #else // sends 502 Bad Gateway to the client to prevent the client from trying to connect to the server again - in case it's a crawler or bad bot.