aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorTeravus Ovares2008-02-18 17:30:55 +0000
committerTeravus Ovares2008-02-18 17:30:55 +0000
commite292d43b96ff21f1a16bf161313a9b1a84d5f9c0 (patch)
treedc958118bdafd2fe0b5f831dc12a7f72bcd65719
parent* Putting the resending x packet into debug mode only. Set your loglevel to... (diff)
downloadopensim-SC_OLD-e292d43b96ff21f1a16bf161313a9b1a84d5f9c0.zip
opensim-SC_OLD-e292d43b96ff21f1a16bf161313a9b1a84d5f9c0.tar.gz
opensim-SC_OLD-e292d43b96ff21f1a16bf161313a9b1a84d5f9c0.tar.bz2
opensim-SC_OLD-e292d43b96ff21f1a16bf161313a9b1a84d5f9c0.tar.xz
* Since default loglevel is debug, I'm commenting out the resending x packet lines instead. If you want to see them, uncomment the lines, alternatively open up the simulator statistics in the client to get a 'bytes unacked' which is the same information, just compressed so it doesn't lag the simulator and make it harder to pick out useful debug information from the console.
-rw-r--r--OpenSim/Region/ClientStack/ClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs
index 2be75bb..388a502 100644
--- a/OpenSim/Region/ClientStack/ClientView.cs
+++ b/OpenSim/Region/ClientStack/ClientView.cs
@@ -2584,8 +2584,8 @@ namespace OpenSim.Region.ClientStack
2584 { 2584 {
2585 if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent)) 2585 if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent))
2586 { 2586 {
2587 m_log.Debug("[NETWORK]: Resending " + packet.Type.ToString() + " packet, " + 2587 //m_log.Debug("[NETWORK]: Resending " + packet.Type.ToString() + " packet, " +
2588 (now - packet.TickCount) + "ms have passed"); 2588 //(now - packet.TickCount) + "ms have passed");
2589 2589
2590 packet.Header.Resent = true; 2590 packet.Header.Resent = true;
2591 OutPacket(packet, ThrottleOutPacketType.Resend); 2591 OutPacket(packet, ThrottleOutPacketType.Resend);