Add log on consume

This commit is contained in:
Sergiu Toma 2022-08-18 09:08:55 +03:00
parent 9b36a78be2
commit afb328ea3b
1 changed files with 7 additions and 1 deletions

8
app.js
View File

@ -185,6 +185,10 @@ 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
@ -218,9 +222,11 @@ 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)