diff options
author | Teravus Ovares | 2008-02-18 17:24:53 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-02-18 17:24:53 +0000 |
commit | 4e3547cd12e57b4ad80fe3eed10b15966e138e23 (patch) | |
tree | da33f9413c732de736e90fc30aef6bc68d589a6c | |
parent | * Do not allow a user to be created if one with the same name already exists (diff) | |
download | opensim-SC_OLD-4e3547cd12e57b4ad80fe3eed10b15966e138e23.zip opensim-SC_OLD-4e3547cd12e57b4ad80fe3eed10b15966e138e23.tar.gz opensim-SC_OLD-4e3547cd12e57b4ad80fe3eed10b15966e138e23.tar.bz2 opensim-SC_OLD-4e3547cd12e57b4ad80fe3eed10b15966e138e23.tar.xz |
* Putting the resending x packet into debug mode only. Set your loglevel to debug to see them or pull up the simulator statistics in the client to see the 'un acked packet bytes'.
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 5c179be..2be75bb 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -2584,7 +2584,7 @@ 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.Info("[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; |