debug, don't use

This commit is contained in:
Cort Buffington 2015-08-13 21:27:56 -05:00
parent 86a42b27d8
commit 5c502e1667
1 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ class playIPSC(IPSC):
#
def group_voice(self, _network, _src_sub, _dst_group, _ts, _end, _peerid, _data):
if _end:
logger.info('(%s) End Voice Call. SourceID %s, TS %s, TGID %s, PeerID %s', _network, int_id(_src_sub), _ts+1, int_id(_dst_group), int_id(_peerid))
logger.info('(%s) End Voice Call. SourceID: %s, TS: %s, TGID: %s, PeerID: %s', _network, int_id(_src_sub), _ts+1, int_id(_dst_group), int_id(_peerid))
_self_peer = NETWORK[_network]['LOCAL']['RADIO_ID']
_self_src = _self_peer[1:]
@ -83,7 +83,7 @@ class playIPSC(IPSC):
if (_ts == 0 and _dst_group in trigger_groups_1) or (_ts == 1 and _dst_group in trigger_groups_2):
return
logger.info('(%s) Event ID: %s - Playback triggered from SourceID %s, TS %s, TGID %s, PeerID %s', _network, self.event_id, int_id(_src_sub), _ts+1, int_id(_dst_group), int_id(_peerid))
logger.info('(%s) Event ID: %s - Playback triggered from SourceID: %s, TS: %s, TGID: %s, PeerID: %s', _network, self.event_id, int_id(_src_sub), _ts+1, int_id(_dst_group), int_id(_peerid))
# Determine the type of voice packet this is (see top of file for possible types)
_burst_data_type = _data[30]