From e10a2d138aab2747eaff3a66a97b6a3324f56749 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 3 Aug 2016 04:41:38 -0500 Subject: [PATCH] kill a few logger lines. --- hblink.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hblink.py b/hblink.py index d7c173d..34fcff9 100755 --- a/hblink.py +++ b/hblink.py @@ -191,7 +191,7 @@ class HBMASTER(DatagramProtocol): def send_clients(self, _packet): for _client in self._clients: self.send_packet(_client, _packet) - logger.debug('(%s) Packet sent to client %s', self._master, self._clients[_client]['RADIO_ID']) + #logger.debug('(%s) Packet sent to client %s', self._master, self._clients[_client]['RADIO_ID']) def send_packet(self, _client, _packet): _ip = self._clients[_client]['IP'] @@ -219,7 +219,7 @@ class HBMASTER(DatagramProtocol): _seq = _data[4:5] _rf_src = _data[5:8] _dst_id = _data[8:11] - logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._master, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) + #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._master, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) # If AMBE audio exporting is configured... if self._config['EXPORT_AMBE']: @@ -411,7 +411,7 @@ class HBCLIENT(DatagramProtocol): _seq = _data[4:5] _rf_src = _data[5:8] _dst_id = _data[8:11] - logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._client, h(_seq), int_id(_rf_src), int_id(_dst_id)) + #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._client, h(_seq), int_id(_rf_src), int_id(_dst_id)) # If AMBE audio exporting is configured... if self._config['EXPORT_AMBE']: