774056846 4 months ago
parent
commit
9f65167428
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/core/callcenter/esl/handler/channel_answer_handler.py

+ 4 - 4
src/core/callcenter/esl/handler/channel_answer_handler.py

@@ -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("answer call_id:%s, call_info:%s, event:%s", call_id, call_info, json.loads(event.serialize('json')))
+        print("answer call_id:%s, call_info:%s, event:%s"% (call_id, call_info, json.loads(event.serialize('json'))), flush=True)
         if not call_info:
             return
 
@@ -96,8 +96,8 @@ class ChannelAnswerHandler(EslEventHandler):
         self.inbound_client.make_call_new(context)
 
     def call_bridge(self, call: CallInfo, device: DeviceInfo, next_command: NextCommand, event):
-        self.logger.info("开始桥接电话: callId:%s, caller:%s, called:%s, device1:%s, device2:%s", call.call_id,
-                         call.caller, call.called, next_command.device_id, next_command.next_value)
+        print("开始桥接电话: callId:%s, caller:%s, called:%s, device1:%s, device2:%s"% (call.call_id,
+                         call.caller, call.called, next_command.device_id, next_command.next_value), flush=True)
         device1 = call.device_info_map.get(next_command.device_id)
         device2 = call.device_info_map.get(next_command.next_value)
 
@@ -114,7 +114,7 @@ class ChannelAnswerHandler(EslEventHandler):
         from_device_id = next_command.device_id
         device_id = EslEventUtil.getDeviceId(event)
         call.next_commands.append(NextCommand(device_id, NextType.NEXT_TRANSFER_SUCCESS.code, call.device_list[1]))
-        self.logger.info("转接电话中 callId:%s, from:%s, to:%s ", call.call_id, from_device_id, device_id)
+        print("转接电话中 callId:%s, from:%s, to:%s "% (call.call_id, from_device_id, device_id), flush=True)
         self.inbound_client.transfer_call(device_id, next_command.next_value)
 
     def listen(self, call: CallInfo, device: DeviceInfo, next_command: NextCommand, event):