1
0
Эх сурвалжийг харах

fix LogOutgoingDetail output length limit

UbitUmarov 1 сар өмнө
parent
commit
3f70e493b0

+ 1 - 1
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] + "...";