|
@@ -27,7 +27,7 @@ class ChannelAnswerHandler(EslEventHandler):
|
|
|
def handle(self, address, event, coreUUID):
|
|
|
call_id = EslEventUtil.getCallId(event)
|
|
|
call_info = self.cache.get_call_info(call_id)
|
|
|
- # self.logger.info("lwanswer call_id:%s, call_info:%s, event:%s"% (call_id, call_info, json.loads(event.serialize('json'))))
|
|
|
+ self.logger.info("liuwei::debugger::answer call_id:%s, call_info:%s, event:%s"% (call_id, call_info, json.loads(event.serialize('json'))))
|
|
|
if not call_info:
|
|
|
return
|
|
|
|
|
@@ -35,7 +35,7 @@ class ChannelAnswerHandler(EslEventHandler):
|
|
|
device_info = call_info.device_info_map.get(device_id)
|
|
|
next_command = call_info.next_commands[0] if len(call_info.next_commands) > 0 else None
|
|
|
device_type = DeviceType.get_by_code(device_info.device_type)
|
|
|
- self.logger.info("lwChannelAnswerHandler call_id:%s, device_id:%s, device_type:%s, next_command:%s"%(call_id, device_id, device_type, next_command))
|
|
|
+ self.logger.info("ChannelAnswerHandler call_id:%s, device_id:%s, device_type:%s, next_command:%s"%(call_id, device_id, device_type, next_command))
|
|
|
if not next_command:
|
|
|
return
|
|
|
|