diff --git a/hb_confbridge.py b/hb_confbridge.py index 7d44631..73c142a 100755 --- a/hb_confbridge.py +++ b/hb_confbridge.py @@ -183,7 +183,7 @@ def stream_trimmer_loop(): _system = systems[system].STATUS[stream_id] _config = CONFIG['SYSTEMS'][system] if systems[system].STATUS[stream_id]['REMOVE'] == True: - logger.info('(%s) *REMOVE ENDED* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ + logger.debug('(%s) *REMOVE ENDED* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ system, int_id(stream_id), get_alias(int_id(_system['RFS']), subscriber_ids), get_alias(int_id(_config['NETWORK_ID']), peer_ids), get_alias(int_id(_system['TGID']), talkgroup_ids), _system['LAST'] - _system['START']) else: logger.info('(%s) *TIME OUT* STREAM ID: %s SUB: %s PEER: %s TGID: %s TS 1 Duration: %s', \ diff --git a/hblink.py b/hblink.py index 52cd6d8..33f25dc 100755 --- a/hblink.py +++ b/hblink.py @@ -118,7 +118,7 @@ class OPENBRIDGE(DatagramProtocol): self._system = _name self._report = _report self._config = self._CONFIG['SYSTEMS'][self._system] - self._laststrid = deque([], 10) + self._laststrid = deque([], 20) def dereg(self): logger.info('(%s) is mode OPENBRIDGE. No De-Registration required, continuing shutdown', self._system)