Update ACL logging info

This commit is contained in:
n0mjs710 2018-11-21 20:55:54 -06:00
parent 145d2f4537
commit c5f2811a45
1 changed files with 34 additions and 37 deletions

View File

@ -186,7 +186,6 @@ class OPENBRIDGE(DatagramProtocol):
self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM ACL', self._system, int_id(_stream_id), int_id(_dst_id)) self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM ACL', self._system, int_id(_stream_id), int_id(_dst_id))
self._laststrid = _stream_id self._laststrid = _stream_id
return return
self._laststrid = _stream_id
# Userland actions -- typically this is the function you subclass for an application # Userland actions -- typically this is the function you subclass for an application
self.dmrd_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data) self.dmrd_received(_peer_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _dtype_vseq, _stream_id, _data)
@ -348,7 +347,6 @@ class HBSYSTEM(DatagramProtocol):
self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM TS2 ACL', self._system, int_id(_stream_id), int_id(_dst_id)) self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM TS2 ACL', self._system, int_id(_stream_id), int_id(_dst_id))
self._laststrid = _stream_id self._laststrid = _stream_id
return return
self._laststrid = _stream_id
# The basic purpose of a master is to repeat to the peers # The basic purpose of a master is to repeat to the peers
if self._config['REPEAT'] == True: if self._config['REPEAT'] == True:
@ -534,7 +532,6 @@ class HBSYSTEM(DatagramProtocol):
self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM TS2 ACL', self._system, int_id(_stream_id), int_id(_dst_id)) self._logger.debug('(%s) CALL DROPPED WITH STREAM ID %s ON TGID %s BY SYSTEM TS2 ACL', self._system, int_id(_stream_id), int_id(_dst_id))
self._laststrid = _stream_id self._laststrid = _stream_id
return return
self._laststrid = _stream_id
# Userland actions -- typically this is the function you subclass for an application # Userland actions -- typically this is the function you subclass for an application