diff options
author | John Hurliman | 2009-10-09 02:13:21 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-09 02:13:21 -0700 |
commit | a3e31cdeafbcfd371291213413b6d0d97a71c13b (patch) | |
tree | 9472612d69b1d868a06edc3be2dda9d605662508 /OpenSim/Region | |
parent | Calling .Close() on AutoResetEvent and ManualResetEvent (those classes contai... (diff) | |
download | opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.zip opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.gz opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.bz2 opensim-SC_OLD-a3e31cdeafbcfd371291213413b6d0d97a71c13b.tar.xz |
Added more debugging output to the "unrecognized source" warning
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index 9aeea9a..7052e0e 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -504,7 +504,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
504 | // Determine which agent this packet came from | 504 | // Determine which agent this packet came from |
505 | if (!m_clients.TryGetValue(address, out client)) | 505 | if (!m_clients.TryGetValue(address, out client)) |
506 | { | 506 | { |
507 | m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address); | 507 | m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + |
508 | ", currently tracking " + m_clients.Count + " clients"); | ||
508 | return; | 509 | return; |
509 | } | 510 | } |
510 | 511 | ||