From 9b36a78be264b3b32f4eed7728a5fabe03e77a6f Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Tue, 16 Aug 2022 14:36:23 +0300 Subject: [PATCH] Add log on consume --- app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app.js b/app.js index 737ec47..1f3a1a0 100644 --- a/app.js +++ b/app.js @@ -183,6 +183,7 @@ peers.on('connection', async socket => { socket.on('consume', async ({ rtpCapabilities, callId }, callback) => { try { + console.log('consume', rtpCapabilities, callId); // check if the router can consume the specified producer if (router[callId].canConsume({ producerId: producer.id,