diff options
author | John Hurliman | 2009-10-06 15:55:39 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-06 15:55:39 -0700 |
commit | 312438f145aa7286df365e37df423e743dd85db0 (patch) | |
tree | a33d63a5d1f371386909ab6e0f1065fd7d5e3d1b /OpenSim/Region/ClientStack | |
parent | Merging in diva's locking fixes (diff) | |
download | opensim-SC_OLD-312438f145aa7286df365e37df423e743dd85db0.zip opensim-SC_OLD-312438f145aa7286df365e37df423e743dd85db0.tar.gz opensim-SC_OLD-312438f145aa7286df365e37df423e743dd85db0.tar.bz2 opensim-SC_OLD-312438f145aa7286df365e37df423e743dd85db0.tar.xz |
Commented noisy debugging about packet splitting
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index c0a84a8..2c5ad85 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -210,8 +210,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
210 | byte[][] datas = packet.ToBytesMultiple(); | 210 | byte[][] datas = packet.ToBytesMultiple(); |
211 | int packetCount = datas.Length; | 211 | int packetCount = datas.Length; |
212 | 212 | ||
213 | if (packetCount > 1) | 213 | //if (packetCount > 1) |
214 | m_log.Debug("[LLUDPSERVER]: Split " + packet.Type + " packet into " + packetCount + " packets"); | 214 | // m_log.Debug("[LLUDPSERVER]: Split " + packet.Type + " packet into " + packetCount + " packets"); |
215 | 215 | ||
216 | for (int i = 0; i < packetCount; i++) | 216 | for (int i = 0; i < packetCount; i++) |
217 | { | 217 | { |
@@ -250,8 +250,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
250 | byte[][] datas = packet.ToBytesMultiple(); | 250 | byte[][] datas = packet.ToBytesMultiple(); |
251 | int packetCount = datas.Length; | 251 | int packetCount = datas.Length; |
252 | 252 | ||
253 | if (packetCount > 1) | 253 | //if (packetCount > 1) |
254 | m_log.Debug("[LLUDPSERVER]: Split " + packet.Type + " packet into " + packetCount + " packets"); | 254 | // m_log.Debug("[LLUDPSERVER]: Split " + packet.Type + " packet into " + packetCount + " packets"); |
255 | 255 | ||
256 | for (int i = 0; i < packetCount; i++) | 256 | for (int i = 0; i < packetCount; i++) |
257 | { | 257 | { |