mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
fix LogOutgoingDetail output length limit
This commit is contained in:
parent
45372514c2
commit
3f70e493b0
1 changed files with 1 additions and 1 deletions
|
@ -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] + "...";
|
||||
|
|
Loading…
Reference in a new issue