From 4fed2ea7bf274a532cd1b65ab2debb420059da4f Mon Sep 17 00:00:00 2001 From: Matthew Hodgson Date: Tue, 20 Feb 2018 12:38:00 +0000 Subject: [PATCH] log event IDs of ignored calls --- src/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.js b/src/client.js index 62005f880..bda779aa9 100644 --- a/src/client.js +++ b/src/client.js @@ -3147,7 +3147,7 @@ function setupCallEventHandler(client) { if (ignoreCallIds[e.getContent().call_id]) { console.log( 'Ignoring previously answered/hungup call ' + - e.getContent().call_id, + e.getContent().call_id + ' (' + e.getId() + ')', ); return; }