From b5182afe088ab29fb50ae3a9f82bfc2becdcdc4e Mon Sep 17 00:00:00 2001 From: CWX Date: Wed, 5 Feb 2025 15:53:42 +0000 Subject: [PATCH] remove TODO --- Libraries/Core/Servers/Http/SptHttpListener.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/Core/Servers/Http/SptHttpListener.cs b/Libraries/Core/Servers/Http/SptHttpListener.cs index 408eceee..66342ddb 100644 --- a/Libraries/Core/Servers/Http/SptHttpListener.cs +++ b/Libraries/Core/Servers/Http/SptHttpListener.cs @@ -182,7 +182,6 @@ public class SptHttpListener : IHttpListener */ protected void LogRequest(HttpRequest req, string output) { - // TODO: when do we want to log these? if (ProgramStatics.ENTRY_TYPE() != EntryType.RELEASE) { var log = new Response(req.Method, output); @@ -204,7 +203,6 @@ public class SptHttpListener : IHttpListener if (ProgramStatics.ENTRY_TYPE() != EntryType.RELEASE) { // Parse quest info into object - var log = new Request(req.Method, new RequestData(req.Path, req.Headers, deserializedObject)); _requestLogger.Info($"REQUEST={_jsonUtil.Serialize(log)}"); }