Changed Error handling request to critical

This commit is contained in:
Chomp
2025-06-04 19:58:04 +01:00
parent 6377d92d47
commit a92994e50b
@@ -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