coment out some of previus debug messaged before forgetting about them...

avinationmerge
UbitUmarov 2012-06-22 18:29:46 +01:00
parent 0de3ad5307
commit 1468b01afc
1 changed files with 2 additions and 2 deletions

View File

@ -710,7 +710,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
IClientAPI client; IClientAPI client;
if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView)) if (!m_scene.TryGetClient(address, out client) || !(client is LLClientView))
{ {
m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName); // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet from an unrecognized source: " + address + " in " + m_scene.RegionInfo.RegionName);
return; return;
} }
@ -718,7 +718,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
if (!udpClient.IsConnected) if (!udpClient.IsConnected)
{ {
m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName); // m_log.Debug("[LLUDPSERVER]: Received a " + packet.Type + " packet for a unConnected client in " + m_scene.RegionInfo.RegionName);
return; return;
} }