Added more debugging output to the "unrecognized source" warning

prioritization
John Hurliman 2009-10-09 02:13:21 -07:00
parent 494a1e922d
commit a3e31cdeaf
1 changed files with 2 additions and 1 deletions

View File

@ -504,7 +504,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
// Determine which agent this packet came from
if (!m_clients.TryGetValue(address, out client))
{
m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address);
m_log.Warn("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address +
", currently tracking " + m_clients.Count + " clients");
return;
}