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:
Justin Clark-Casey (justincc)
2012-03-16 01:46:21 +00:00
parent c386b68373
commit 8550a4a07e

View File

@@ -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;