diff options
author | Sean Dague | 2007-11-09 20:47:20 +0000 |
---|---|---|
committer | Sean Dague | 2007-11-09 20:47:20 +0000 |
commit | 6c77ae550769640c004337b811f5713502a52c89 (patch) | |
tree | 2861e9cc50f6f8bf83f6f91fee7218bfd9411b99 /OpenSim/Region/ClientStack/ClientView.cs | |
parent | turn back on verbose message for resending packets (diff) | |
download | opensim-SC_OLD-6c77ae550769640c004337b811f5713502a52c89.zip opensim-SC_OLD-6c77ae550769640c004337b811f5713502a52c89.tar.gz opensim-SC_OLD-6c77ae550769640c004337b811f5713502a52c89.tar.bz2 opensim-SC_OLD-6c77ae550769640c004337b811f5713502a52c89.tar.xz |
add a few more verbose bits
Diffstat (limited to 'OpenSim/Region/ClientStack/ClientView.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index e560cbe..4b3a6c1 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -270,9 +270,11 @@ namespace OpenSim.Region.ClientStack | |||
270 | if (throttleSentPeriod > throttleOutbound) | 270 | if (throttleSentPeriod > throttleOutbound) |
271 | { | 271 | { |
272 | PacketQueue.Enqueue(nextPacket); | 272 | PacketQueue.Enqueue(nextPacket); |
273 | MainLog.Instance.Verbose("Client over throttle limit, requeuing packet"); | ||
273 | 274 | ||
274 | if (queuedLast) | 275 | if (queuedLast) |
275 | { | 276 | { |
277 | MainLog.Instance.Verbose("No more sendable packets, need to sleep now"); | ||
276 | Thread.Sleep(100); // Wait a little while if this was the last packet we saw | 278 | Thread.Sleep(100); // Wait a little while if this was the last packet we saw |
277 | } | 279 | } |
278 | 280 | ||