From c7052f7dc735329941776cca10a1dccd8d10c11e Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 27 Mar 2018 18:21:03 +0100 Subject: [PATCH] Remove not very useful but veryv spammy log line --- src/client.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/client.js b/src/client.js index 372fdd6e4..aecc0f4da 100644 --- a/src/client.js +++ b/src/client.js @@ -3156,10 +3156,7 @@ function setupCallEventHandler(client) { // now loop through the buffer chronologically and inject them callEventBuffer.forEach(function(e) { if (ignoreCallIds[e.getContent().call_id]) { - console.log( - 'Ignoring previously answered/hungup call ' + - e.getContent().call_id + ' (' + e.getId() + ')', - ); + // This call has previously been ansered or hung up: ignore it return; } callEventHandler(e);