From a92994e50b601ae381cddd2c38ed2b569d0a7e62 Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 4 Jun 2025 19:58:04 +0100 Subject: [PATCH] Changed `Error handling request` to critical --- Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs b/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs index f872b4cc..8a261e14 100644 --- a/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs +++ b/Libraries/SPTarkov.Server.Core/Servers/HttpServer.cs @@ -118,7 +118,7 @@ public class HttpServer( } catch (Exception ex) { - _logger.Debug("Error handling request: " + context.Request.Path); + _logger.Critical("Error handling request: " + context.Request.Path); _logger.Critical(ex.Message); _logger.Critical(ex.StackTrace); #if DEBUG