Additional Logging for Call Contention

more descriptive logging when a call is not bridged due to group
hangtime
This commit is contained in:
Cort Buffington 2015-07-27 16:27:45 -05:00
parent f0cc0e097b
commit c73483a4fd
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class bridgeIPSC(IPSC):
if ((rule['DST_GROUP'] != _status[_TS]['TX_GROUP']) and ((now - _status[_TS]['TX_TIME']) < RULES[_network]['GROUP_HANGTIME'])):
if _burst_data_type == BURST_DATA_TYPE['VOICE_HEAD']:
logger.info('(%s) Call not bridged to destination on TGID %s, target in group hangtime: IPSC %s, %s, TGID%s', _network, _status[_TS]['TX_GROUP'] _target, _TS, int_id(rule['DST_GROUP']))
logger.info('(%s) Call not bridged to destination on TGID %s, target in group hangtime: IPSC %s, %s, TGID%s', _network, _status[_TS]['TX_GROUP'], _target, _TS, int_id(rule['DST_GROUP']))
return
if (rule['DST_GROUP'] == _status[_TS]['TX_GROUP']) and (_src_sub != _status[_TS]['TX_SRC_SUB']) and ((now - _status[_TS]['TX_TIME']) < TS_CLEAR_TIME):