diff options
author | Teravus Ovares | 2008-05-25 20:50:45 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-25 20:50:45 +0000 |
commit | c20f7d6171a9df151c3ccde063336338da9ae322 (patch) | |
tree | a6093b52da4093e3b692771a421ce4a55052d24b /OpenSim/Region/ClientStack | |
parent | Thank you very much, Melanie for a patch that: (diff) | |
download | opensim-SC_OLD-c20f7d6171a9df151c3ccde063336338da9ae322.zip opensim-SC_OLD-c20f7d6171a9df151c3ccde063336338da9ae322.tar.gz opensim-SC_OLD-c20f7d6171a9df151c3ccde063336338da9ae322.tar.bz2 opensim-SC_OLD-c20f7d6171a9df151c3ccde063336338da9ae322.tar.xz |
* A hacky Top Scripts display. It isn't accurate as far as ms accounting, however you can use it to help find out what scripts are causing your simulator to cry.
* Access it from the Estate tools/Debug tab.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 484518a..11fb5be 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -5652,6 +5652,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
5652 | handlerLandStatRequest(0, 1, 0, "", this); | 5652 | handlerLandStatRequest(0, 1, 0, "", this); |
5653 | } | 5653 | } |
5654 | break; | 5654 | break; |
5655 | case "scripts": | ||
5656 | handlerLandStatRequest = OnLandStatRequest; | ||
5657 | if (handlerLandStatRequest != null) | ||
5658 | { | ||
5659 | handlerLandStatRequest(0, 0, 0, "", this); | ||
5660 | } | ||
5661 | break; | ||
5655 | default: | 5662 | default: |
5656 | m_log.Error("EstateOwnerMessage: Unknown method requested\n" + messagePacket.ToString()); | 5663 | m_log.Error("EstateOwnerMessage: Unknown method requested\n" + messagePacket.ToString()); |
5657 | break; | 5664 | break; |