mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
In Top Scripts report, don't show scripts with no or less than 1 microsecond of execution time.
This is to make the report clearer and less confusing.
This commit is contained in:
@@ -904,9 +904,15 @@ namespace OpenSim.Region.CoreModules.World.Estate
|
||||
|
||||
foreach (var entry in sortedSceneData)
|
||||
{
|
||||
// The object may have been deleted since we received the data.
|
||||
if (entry.Part == null)
|
||||
continue;
|
||||
|
||||
// Don't show scripts that haven't executed or where execution time is below one microsecond in
|
||||
// order to produce a more readable report.
|
||||
if (entry.Measurement < 0.001)
|
||||
continue;
|
||||
|
||||
items++;
|
||||
SceneObjectGroup so = entry.Part.ParentGroup;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user