Browse Source

Removes console.debug

master
hristoterezov 9 years ago
parent
commit
3c0295e294
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      modules/connectionquality/connectionquality.js

+ 0
- 1
modules/connectionquality/connectionquality.js View File

100
         var newVal = 100 - data.packetLoss.total;
100
         var newVal = 100 - data.packetLoss.total;
101
         var oldVal = remoteConnectionQuality[id];
101
         var oldVal = remoteConnectionQuality[id];
102
         remoteConnectionQuality[id] = calculateQuality(newVal, oldVal || 100);
102
         remoteConnectionQuality[id] = calculateQuality(newVal, oldVal || 100);
103
-        console.debug(newVal, oldVal, remoteConnectionQuality[id]);
104
 
103
 
105
         eventEmitter.emit(
104
         eventEmitter.emit(
106
             CQEvents.REMOTESTATS_UPDATED, id, remoteConnectionQuality[id],
105
             CQEvents.REMOTESTATS_UPDATED, id, remoteConnectionQuality[id],

Loading…
Cancel
Save