From b64c49c1cd7db84f74baa05d485061c39cfbeb10 Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Fri, 12 Aug 2022 15:08:30 +0300 Subject: [PATCH] Refactor transportclose 21 --- app.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app.js b/app.js index 682ecae..611b657 100644 --- a/app.js +++ b/app.js @@ -111,7 +111,6 @@ peers.on('connection', async socket => { socket.on('createRoom', async ({ callId }, callback) => { console.log('[createRoom] callId', callId); console.log('Router length:', Object.keys(router).length); - console.log('1 - router[callId]', router[callId]); if (router[callId] === undefined) { // worker.createRouter(options) // options = { mediaCodecs, appData } @@ -120,7 +119,6 @@ peers.on('connection', async socket => { // none of the two are required router[callId] = await worker.createRouter({ mediaCodecs }) console.log(`[createRoom] Router ID: ${router[callId].id}`) - console.log('2 - router[callId]', router[callId]); } getRtpCapabilities(callId, callback)