added more debugging

This commit is contained in:
ZappoMan 2013-11-05 13:47:58 -08:00
parent 3ba9c8c30e
commit 1c580551bb

View file

@ -32,6 +32,10 @@ bool ReceivedPacketProcessor::process() {
}
while (_packets.size() > 0) {
NetworkPacket& packet = _packets.front();
printf("ReceivedPacketProcessor::process() calling processPacket() NetworkPacket=%p packet.getData()=%p packet.getLength()=%ld\n",
&packet, packet.getData(), packet.getLength() );
processPacket(packet.getAddress(), packet.getData(), packet.getLength());
lock();