Skip to content

Commit

Permalink
Remove excess logging
Browse files Browse the repository at this point in the history
  • Loading branch information
havfo committed Mar 1, 2024
1 parent c6ee233 commit fcb4313
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/middlewares/producerMiddleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,14 @@ export const createProducerMiddleware = ({
}
});

producer.on('score', (score) => roomServerConnection.notify({
method: 'producerScore',
data: {
routerId,
producerId: producer.id,
score
}
}));
// producer.on('score', (score) => roomServerConnection.notify({
// method: 'producerScore',
// data: {
// routerId,
// producerId: producer.id,
// score
// }
// }));

response.id = producer.id;
context.handled = true;
Expand Down Expand Up @@ -408,4 +408,4 @@ export const createProducerMiddleware = ({
};

return middleware;
};
};

0 comments on commit fcb4313

Please sign in to comment.