turn back on verbose message for resending packets

afrisby
Sean Dague 2007-11-09 20:32:55 +00:00
parent 3e5ea796ae
commit 8ac2f5a3a0
1 changed files with 2 additions and 2 deletions

View File

@ -251,8 +251,8 @@ namespace OpenSim.Region.ClientStack
{ {
if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent)) if ((now - packet.TickCount > RESEND_TIMEOUT) && (!packet.Header.Resent))
{ {
//MainLog.Instance.Verbose("Resending " + packet.Type.ToString() + " packet, " + MainLog.Instance.Verbose("Resending " + packet.Type.ToString() + " packet, " +
//(now - packet.TickCount) + "ms have passed"); (now - packet.TickCount) + "ms have passed");
packet.Header.Resent = true; packet.Header.Resent = true;
OutPacket(packet); OutPacket(packet);