From 8a08d3eac6540b00ff23115936d56b4f22f16d53 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 29 Jul 2025 18:06:27 -0500 Subject: [PATCH] refactor(wrapper): removed the logger stuff so we dont fill up space --- LstWrapper/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LstWrapper/Program.cs b/LstWrapper/Program.cs index 760f755..6d7c4b8 100644 --- a/LstWrapper/Program.cs +++ b/LstWrapper/Program.cs @@ -40,7 +40,7 @@ app.Use(async (context, next) => { if (context.WebSockets.IsWebSocketRequest && context.Request.Path.StartsWithSegments("/ws")) { - LogToFile($"WebSocket request received for path: {context.Request.Path}"); + // LogToFile($"WebSocket request received for path: {context.Request.Path}"); try { @@ -65,7 +65,7 @@ app.Use(async (context, next) => } catch (Exception ex) { - LogToFile($"WebSocket proxy error: {ex.Message}"); + //LogToFile($"WebSocket proxy error: {ex.Message}"); context.Response.StatusCode = (int)HttpStatusCode.BadGateway; await context.Response.WriteAsync($"WebSocket proxy error: {ex.Message}"); }