DavidLiu 3 mesi fa
parent
commit
60e2865056
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/core/callcenter/callback.py

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

@@ -31,7 +31,7 @@ class Callback(object):
             try:
                 event, call_info, device_info = self.event_queue.get(timeout=1)
                 call_type = CallType.get_by_code(call_info.call_type) if call_info else None
-                # self.logger.info("callback::call_type=%s, call_info=%s", call_type, call_info)
+                self.logger.info("callback::call_type=%s, call_info=%s, event=%s", call_type, call_info, json.loads(event.serialize('json')))
                 if call_type is None:
                     continue
                 if CallType.BOT_CALL == call_type or CallType.INCOMING_BOT_CALL == call_type: