yengine, only send out of heap errors to owner and wigotu stacktrace

This commit is contained in:
UbitUmarov
2022-03-09 22:03:55 +00:00
parent 0e5abf6bc1
commit 60e67e5320
2 changed files with 15 additions and 7 deletions

View File

@@ -2043,7 +2043,7 @@ namespace OpenSim.Region.ScriptEngine.Yengine
public class OutOfHeapException: Exception
{
public OutOfHeapException(int oldtotal, int newtotal, int limit)
: base("oldtotal=" + oldtotal + ", newtotal=" + newtotal + ", limit=" + limit)
: base("(OWNER)oldtotal=" + oldtotal + ", newtotal=" + newtotal + ", limit=" + limit)
{
}
}