diff --git a/app.js b/app.js index f07c0a0..9bbe501 100644 --- a/app.js +++ b/app.js @@ -205,6 +205,7 @@ peers.on('connection', async socket => { }) socket.on('consume', async ({ rtpCapabilities, callId }, callback) => { + console.log('[consume] callId', callId); try { // console.log('consume', rtpCapabilities, callId); // check if the router can consume the specified producer @@ -212,6 +213,7 @@ peers.on('connection', async socket => { producerId: producer.id, rtpCapabilities })) { + console.log('[consume] Can consume', callId); // transport can now consume and return a consumer consumer = await consumerTransport.consume({ producerId: producer.id, @@ -252,7 +254,7 @@ peers.on('connection', async socket => { callback({ params }) } } catch (error) { - console.log(error.message) + console.log('[consume] Can\'t consume', error.message) callback({ params: { error: error