774056846 4 kuukautta sitten
vanhempi
commit
f5bbd08d05

+ 1 - 1
src/core/callcenter/call.py

@@ -93,7 +93,7 @@ class CallService:
         call_info.device_info_map[device_id] = device_info
         call_info.next_commands.append(NextCommand(device_info.device_id, NextType.NEXT_TRANSFER_CALL.code, call_info.device_list[0]))
         call_info.agent_key = agent_number
-        print('transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info), flush=True)
+        print('lwdebugger::transfer, agent_number=%s, device_id=%s, call_info=%s'% (agent_number, device_id, call_info), flush=True)
         # agent.sip_server
         self.cache.add_call_info(call_info)
         self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)

+ 1 - 1
src/core/callcenter/esl/client.py

@@ -648,7 +648,7 @@ class OutboundClient:
             call_info.device_list.append(new_device_id)
             # call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_BRIDGE.code, new_device_id))
             call_info.device_info_map = {device_id: device_custom, new_device_id: device_bot}
-            print("outBound, call_info=%s, kwargs=%s"%(call_info, kwargs), flush=True)
+            print("lwdebugger::outBound, call_info=%s"%(call_info), flush=True)
             self.server.cache.add_call_info(call_info)
 
 

+ 1 - 0
src/core/callcenter/esl/handler/channel_answer_handler.py

@@ -88,6 +88,7 @@ class ChannelAnswerHandler(EslEventHandler):
                                 call_time=now, device_type=DeviceType.CUSTOMER.code, caller_display=route_gateway.name, cdr_type=CdrType.OUTBOUND.code)
         call.next_commands.append(NextCommand(device_id=device_id, next_type=NextType.NEXT_CALL_BRIDGE.code, next_value=new_device_id))
         call.device_info_map[new_device_id] = new_device
+        print("lwdebugger::call_other, call_info=%s"%call, flush=True)
         self.cache.add_call_info(call)
         self.cache.add_agent_info(agent=agent, call_id=call_id, device_id=device_id)