From 3f70e493b089978d84fb2cf6a75dd3e33b894b8d Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Wed, 16 Oct 2024 23:46:34 +0100 Subject: [PATCH] fix LogOutgoingDetail output length limit --- OpenSim/Framework/WebUtil.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 1a9d9cc1e5..744e732e44 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs @@ -333,7 +333,7 @@ namespace OpenSim.Framework [MethodImpl(MethodImplOptions.AggressiveInlining)] public static void LogOutgoingDetail(string context, string output) { - if (DebugLevel == 5) + if (DebugLevel >= 5) { if (output.Length > MaxRequestDiagLength) output = output[..MaxRequestDiagLength] + "...";