diff options
author | Adam Frisby | 2007-12-04 10:13:13 +0000 |
---|---|---|
committer | Adam Frisby | 2007-12-04 10:13:13 +0000 |
commit | 91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0 (patch) | |
tree | 7197561681677d4bd7202d9c7a49757b28bccd04 /OpenSim/Region/ClientStack | |
parent | removed old svn eol-style property (diff) | |
download | opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.zip opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.gz opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.bz2 opensim-SC_OLD-91c1e8a7347cd4909a3fa0c6be78bfb9ba9519f0.tar.xz |
* Fixed a whole bunch of console messages.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 8 | ||||
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 1c16a95..56ab5d6 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -453,11 +453,11 @@ namespace OpenSim.Region.ClientStack | |||
453 | if (bytesSent > throttleOutboundMax) | 453 | if (bytesSent > throttleOutboundMax) |
454 | { | 454 | { |
455 | PacketQueue.Enqueue(nextPacket); | 455 | PacketQueue.Enqueue(nextPacket); |
456 | MainLog.Instance.Verbose("Client over throttle limit, requeuing packet"); | 456 | MainLog.Instance.Verbose("THROTTLE", "Client over throttle limit, requeuing packet"); |
457 | 457 | ||
458 | if (queuedLast) | 458 | if (queuedLast) |
459 | { | 459 | { |
460 | MainLog.Instance.Verbose("No more sendable packets, need to sleep now"); | 460 | MainLog.Instance.Verbose("THROTTLE", "No more sendable packets, need to sleep now"); |
461 | Thread.Sleep(100); // Wait a little while if this was the last packet we saw | 461 | Thread.Sleep(100); // Wait a little while if this was the last packet we saw |
462 | } | 462 | } |
463 | 463 | ||
@@ -2485,7 +2485,7 @@ namespace OpenSim.Region.ClientStack | |||
2485 | { | 2485 | { |
2486 | if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent)) | 2486 | if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent)) |
2487 | { | 2487 | { |
2488 | MainLog.Instance.Verbose("Resending " + packet.Type.ToString() + " packet, " + | 2488 | MainLog.Instance.Verbose("NETWORK", "Resending " + packet.Type.ToString() + " packet, " + |
2489 | (now - packet.TickCount) + "ms have passed"); | 2489 | (now - packet.TickCount) + "ms have passed"); |
2490 | 2490 | ||
2491 | packet.Header.Resent = true; | 2491 | packet.Header.Resent = true; |
@@ -2504,7 +2504,7 @@ namespace OpenSim.Region.ClientStack | |||
2504 | if (PendingAcks.Count > 250) | 2504 | if (PendingAcks.Count > 250) |
2505 | { | 2505 | { |
2506 | // FIXME: Handle the odd case where we have too many pending ACKs queued up | 2506 | // FIXME: Handle the odd case where we have too many pending ACKs queued up |
2507 | MainLog.Instance.Verbose("Too many ACKs queued up!"); | 2507 | MainLog.Instance.Verbose("NETWORK", "Too many ACKs queued up!"); |
2508 | return; | 2508 | return; |
2509 | } | 2509 | } |
2510 | 2510 | ||
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 4c0c02d..5b43fec 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -79,7 +79,7 @@ namespace OpenSim.Region.ClientStack | |||
79 | 79 | ||
80 | m_httpServer = new BaseHttpServer(m_httpServerPort); | 80 | m_httpServer = new BaseHttpServer(m_httpServerPort); |
81 | 81 | ||
82 | m_log.Verbose("Starting HTTP server"); | 82 | m_log.Status("REGION", "Starting HTTP server"); |
83 | m_httpServer.Start(); | 83 | m_httpServer.Start(); |
84 | } | 84 | } |
85 | 85 | ||