mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
fix LogOutgoingDetail output length limit
This commit is contained in:
@@ -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] + "...";
|
||||
|
||||
Reference in New Issue
Block a user