瀏覽代碼

fix LogOutgoingDetail output length limit

UbitUmarov 1 月之前
父節點
當前提交
3f70e493b0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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] + "...";