774056846 před 4 měsíci
rodič
revize
2679ca917b

+ 3 - 3
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -26,16 +26,16 @@ class ChannelHangupHandler(EslEventHandler):
         self.dataHandleServer=DataHandleServer(inbound_client.app)
 
     def handle(self, address, event, coreUUID):
-        # print(json.loads(event.serialize('json')), flush=True)
+        print(json.loads(event.serialize('json')), flush=True)
         try:
             call_id = EslEventUtil.getCallId(event)
-            # print('debugger::call_id is ', call_id, flush=True)
+            print('debugger::call_id is ', call_id, flush=True)
             if not call_id:
                 self.release(event)
                 print("call_id is null", flush=True)
                 return
             call = self.cache.get_call_info(call_id)
-            # print('debugger::call_info is ', call, flush=True)
+            print('debugger::call_info is ', call, flush=True)
             if not call:
                 print("call:%s is null", call_id, flush=True)
                 return