From bf4ad083784c5a9a8609e46a6798ca7493ba7704 Mon Sep 17 00:00:00 2001 From: Dev PC Date: Tue, 5 Aug 2025 10:17:34 +0300 Subject: [PATCH] debug3 --- call_handler.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/call_handler.py b/call_handler.py index 945cc77..ab2fb46 100644 --- a/call_handler.py +++ b/call_handler.py @@ -58,7 +58,9 @@ class CallHandler: if context != "from-trunk": if context == "from-internal": if config.DEBUG: - logging.info(f"Internal call: ID={linkedid}") + logging.info( + f"Internal call, Adding to finished: ID={linkedid}" + ) self.finished.append(linkedid) return event_channel = event.get("Channel") @@ -80,6 +82,8 @@ class CallHandler: logging.info(f"Incoming NEW call: ID={linkedid}") await self.incoming_call(event, linkedid) return + if config.DEBUG: + logging.info(f"Adding to finished: ID={linkedid}") self.finished.append(linkedid) return