* minor: Comment out the remaining unhandled packet messages in LLClientView, except for unidentified packets

* These make it more difficult to read the logs, and I don't think they help all that much
0.6.0-stable
Justin Clarke Casey 2008-08-25 22:01:51 +00:00
parent ad262444dc
commit ba2130046f
1 changed files with 10 additions and 12 deletions

View File

@ -5822,8 +5822,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
break; break;
case PacketType.GodKickUser: case PacketType.GodKickUser:
m_log.Warn("[CLIENT]: unhandled GodKickUser packet");
GodKickUserPacket gkupack = (GodKickUserPacket)Pack; GodKickUserPacket gkupack = (GodKickUserPacket)Pack;
if (gkupack.UserInfo.GodSessionID == SessionId && AgentId == gkupack.UserInfo.GodID) if (gkupack.UserInfo.GodSessionID == SessionId && AgentId == gkupack.UserInfo.GodID)
@ -6000,12 +5998,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
case PacketType.ViewerStats: case PacketType.ViewerStats:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled ViewerStats packet"); //m_log.Warn("[CLIENT]: unhandled ViewerStats packet");
break; break;
case PacketType.CreateGroupRequest: case PacketType.CreateGroupRequest:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled CreateGroupRequest packet"); //m_log.Warn("[CLIENT]: unhandled CreateGroupRequest packet");
break; break;
//case PacketType.GenericMessage: //case PacketType.GenericMessage:
// TODO: handle this packet // TODO: handle this packet
@ -6013,19 +6011,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP
//break; //break;
case PacketType.MapItemRequest: case PacketType.MapItemRequest:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled MapItemRequest packet"); //m_log.Warn("[CLIENT]: unhandled MapItemRequest packet");
break; break;
case PacketType.TransferAbort: case PacketType.TransferAbort:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled TransferAbort packet"); //m_log.Warn("[CLIENT]: unhandled TransferAbort packet");
break; break;
case PacketType.MuteListRequest: case PacketType.MuteListRequest:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled MuteListRequest packet"); //m_log.Warn("[CLIENT]: unhandled MuteListRequest packet");
break; break;
case PacketType.ParcelDwellRequest: case PacketType.ParcelDwellRequest:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled ParcelDwellRequest packet"); //m_log.Warn("[CLIENT]: unhandled ParcelDwellRequest packet");
break; break;
case PacketType.UseCircuitCode: case PacketType.UseCircuitCode:
// TODO: Don't display this one, we handle it at a lower level // TODO: Don't display this one, we handle it at a lower level
@ -6034,19 +6032,19 @@ namespace OpenSim.Region.ClientStack.LindenUDP
case PacketType.AgentHeightWidth: case PacketType.AgentHeightWidth:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled AgentHeightWidth packet"); //m_log.Warn("[CLIENT]: unhandled AgentHeightWidth packet");
break; break;
case PacketType.ObjectSpinStop: case PacketType.ObjectSpinStop:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled ObjectSpinStop packet"); //m_log.Warn("[CLIENT]: unhandled ObjectSpinStop packet");
break; break;
case PacketType.SoundTrigger: case PacketType.SoundTrigger:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled SoundTrigger packet"); //m_log.Warn("[CLIENT]: unhandled SoundTrigger packet");
break; break;
case PacketType.InventoryDescendents: case PacketType.InventoryDescendents:
// TODO: handle this packet // TODO: handle this packet
m_log.Warn("[CLIENT]: unhandled InventoryDescent packet"); //m_log.Warn("[CLIENT]: unhandled InventoryDescent packet");
break; break;
default: default:
m_log.Warn("[CLIENT]: unhandled packet " + Pack.ToString()); m_log.Warn("[CLIENT]: unhandled packet " + Pack.ToString());