mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
Merge branch 'master' into careminster-presence-refactor
This commit is contained in:
@@ -5222,11 +5222,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
m_log.Error("[GENERICMESSAGE] " + e);
|
||||
m_log.ErrorFormat(
|
||||
"[LLCLIENTVIEW]: Exeception when handling generic message {0}{1}", e.Message, e.StackTrace);
|
||||
}
|
||||
}
|
||||
}
|
||||
m_log.Error("[GENERICMESSAGE] Not handling GenericMessage with method-type of: " + method);
|
||||
|
||||
//m_log.Debug("[LLCLIENTVIEW]: Not handling GenericMessage with method-type of: " + method);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -695,9 +695,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
if (packet.Header.Reliable && !udpClient.PacketArchive.TryEnqueue(packet.Header.Sequence))
|
||||
{
|
||||
if (packet.Header.Resent)
|
||||
m_log.Debug("[LLUDPSERVER]: Received a resend of already processed packet #" + packet.Header.Sequence + ", type: " + packet.Type);
|
||||
else
|
||||
m_log.Warn("[LLUDPSERVER]: Received a duplicate (not marked as resend) of packet #" + packet.Header.Sequence + ", type: " + packet.Type);
|
||||
m_log.DebugFormat(
|
||||
"[LLUDPSERVER]: Received a resend of already processed packet #{0}, type {1} from {2}",
|
||||
packet.Header.Sequence, packet.Type, client.Name);
|
||||
else
|
||||
m_log.WarnFormat(
|
||||
"[LLUDPSERVER]: Received a duplicate (not marked as resend) of packet #{0}, type {1} from {2}",
|
||||
packet.Header.Sequence, packet.Type, client.Name);
|
||||
|
||||
// Avoid firing a callback twice for the same packet
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user