Add log on consume

This commit is contained in:
Sergiu Toma 2022-08-18 09:34:22 +03:00
parent afb328ea3b
commit cd887142f7

8
app.js
View File

@ -185,10 +185,6 @@ peers.on('connection', async socket => {
try {
console.log('consume', rtpCapabilities, callId);
// check if the router can consume the specified producer
console.log('[consume] canConsume', router[callId].canConsume({
producerId: producer.id,
rtpCapabilities
}));
if (router[callId].canConsume({
producerId: producer.id,
rtpCapabilities
@ -222,11 +218,9 @@ peers.on('connection', async socket => {
kind: consumer.kind,
rtpParameters: consumer.rtpParameters,
}
console.log('[consume] params', params);
// send the parameters to the client
callback({ params })
} else {
console.log("Can't consume");
}
} catch (error) {
console.log(error.message)