Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2022-07-04 07:37:21 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2022-07-04 07:37:21 +0300
commitd61a7ca6307994d0f9b90d32218ed1d9a0966c9f (patch)
treeb267a17ede56cb39d0d33ee51d30e35458ffde5f
parent2b5995ef4087750c9935f76ea808ae1b11c20cf0 (diff)
Remove logs about simulcast stream not changed
The view assumes that the model will send a signaling message to set the simulcast stream only when needed, so "selectSimulcastStream" is called without verifying first whether it is needed or not. This can happen quite often (for example, when a participant starts or stops speaking), which can flood the logs in calls with a lot of participants, and knowing that the stream was not changed is not very useful, so that message is now removed. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r--src/utils/webrtc/simplewebrtc/peer.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/webrtc/simplewebrtc/peer.js b/src/utils/webrtc/simplewebrtc/peer.js
index 3ef7e1f74..05c63f159 100644
--- a/src/utils/webrtc/simplewebrtc/peer.js
+++ b/src/utils/webrtc/simplewebrtc/peer.js
@@ -510,7 +510,6 @@ Peer.prototype.handleAnswer = function(answer) {
Peer.prototype.selectSimulcastStream = function(substream, temporal) {
if (this.substream === substream && this.temporal === temporal) {
- console.debug('Simulcast stream not changed', this, substream, temporal)
return
}