From 52ee8ad8acd646a6199ebd78a4b7cd44292ece1a Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 27 Apr 2021 19:45:35 +0100 Subject: [PATCH] Revert "Log todying again" This reverts commit 06dc9fac555f8cef4a2d2b8be951e070961d00df. --- hblink.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hblink.py b/hblink.py index 96cc3d4..299ce0b 100755 --- a/hblink.py +++ b/hblink.py @@ -150,7 +150,7 @@ class OPENBRIDGE(DatagramProtocol): _packet = b''.join([BCSQ, _tgid, _stream_id]) _packet = b''.join([_packet, (hmac_new(self._config['PASSPHRASE'],_packet,sha1).digest())]) self.transport.write(_packet, (self._config['TARGET_IP'], self._config['TARGET_PORT'])) - logger.debug('(%s) *BridgeControl* sent BCSQ Source Quench, TG: %s, Stream ID: %s',self._system,int_id(_tgid), int_id(_stream_id)) + logger.info('(%s) *BridgeControl* sent BCSQ Source Quench, TG: %s, Stream ID: %s',self._system,int_id(_tgid), int_id(_stream_id)) def dmrd_received(self, _peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data): @@ -252,7 +252,7 @@ class OPENBRIDGE(DatagramProtocol): _stream_id = _packet[7:11] _ckhs = hmac_new(self._config['PASSPHRASE'],_packet[:11],sha1).digest() if compare_digest(_hash, _ckhs): - logger.debug('(%s) *BridgeControl* BCSQ Source Quench request received for TGID: %s, Stream ID: %s',self._system,int_id(_tgid), int_id(_stream_id)) + logger.info('(%s) *BridgeControl* BCSQ Source Quench request received for TGID: %s, Stream ID: %s',self._system,int_id(_tgid), int_id(_stream_id)) if '_bcsq' not in self._config: self._config['_bcsq'] = {} self._config['_bcsq'][_tgid] = _stream_id