Various clean ups. Removed some debugging code. Added a new "show pqueues"

command to look at the entity update priority queue. Added a "name" parameter
to show queues, show pqueues and show throttles to look at data for a specific
user.
This commit is contained in:
Mic Bowman
2011-04-22 14:01:12 -07:00
parent 0897647709
commit 3534f4492a
4 changed files with 110 additions and 29 deletions

View File

@@ -174,14 +174,13 @@ namespace OpenSim.Framework
}
}
/// <summary>
/// </summary>
public override string ToString()
{
string s = "";
for (int i = 0; i < NumberOfQueues; i++)
{
if (s != "") s += ",";
s += m_heaps[i].Count.ToString();
}
s += String.Format("{0,7} ",m_heaps[i].Count);
return s;
}