From 549b8d62bb9ad364aedb5fecb55660f08fd3360d Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Fri, 5 Sep 2014 15:57:08 -0500 Subject: [PATCH] improve unknown packet type debugging --- dmrlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmrlink.py b/dmrlink.py index c0fe0b8..c09391d 100755 --- a/dmrlink.py +++ b/dmrlink.py @@ -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)) #************************************************