Selaa lähdekoodia

fix LogOutgoingDetail output length limit

UbitUmarov 1 kuukausi sitten
vanhempi
commit
3f70e493b0
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      OpenSim/Framework/WebUtil.cs

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