improve unknown packet type debugging

This commit is contained in:
Cort Buffington 2014-09-05 15:57:08 -05:00
parent a4461d3de1
commit 549b8d62bb
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ class IPSC(DatagramProtocol):
def unknown_message(self, _network, _packettype, _peerid, _data):
_packettype = h(_packettype)
logger.error('(%s) Unknown message type encountered\n\tPacket Type: %s\n\tFrom: %s\n\tPacket: %s', _network, h(_packettype), int_id(_peerid), h(_data))
logger.error('(%s) Unknown Message - Type: %s From: %s Packet: %s', _network, h(_packettype), int_id(_peerid), h(_data))
#************************************************