Revert "Add callsign to repeat messages"

This reverts commit 0987e2478e89842549844d187abe7650d59478a3.
This commit is contained in:
phl0 2016-09-01 18:22:12 +02:00
parent 472fc2a3eb
commit 0195f773d2

View File

@ -246,7 +246,7 @@ class HBMASTER(DatagramProtocol):
for _client in self._clients:
if _client != _radio_id:
self.send_client(_client, _data)
logger.debug('(%s) Packet repeated to client: %s (%s)', self._master, self._clients[_radio_id]['CALLSIGN'], int_id(_client))
logger.debug('(%s) Packet repeated to client: %s', self._master, int_id(_client))
# Userland actions -- typically this is the function you subclass for an application
self.dmrd_received(_radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _stream_id, _data)