* Added some information to HandleGenericMessage to indicate that it's not the packet that isnt being processed, but instead the method-type.

0.6.2-post-fixes
Adam Frisby 2009-01-04 19:39:17 +00:00
parent 20670ff0c8
commit 00a0f4a286
1 changed files with 3 additions and 7 deletions

View File

@ -3695,11 +3695,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
handlerGenericMessage(sender, method, msg);
return true;
}
catch
catch(Exception e)
{
m_log.Error("[GENERICMESSAGE] " + e);
}
}
}
m_log.Error("[GENERICMESSAGE] Not handling GenericMessage with method-type of: " + method);
return false;
}
@ -4195,12 +4197,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
{
#region Scene/Avatar
// case PacketType.GenericMessage:
// GenericMessagePacket gmpack = (GenericMessagePacket)Pack;
// DecipherGenericMessage(Utils.BytesToString(gmpack.MethodData.Method), gmpack.MethodData.Invoice, gmpack.ParamList);
// break;
case PacketType.AvatarPropertiesRequest:
AvatarPropertiesRequestPacket avatarProperties = (AvatarPropertiesRequestPacket)Pack;