Przeglądaj źródła

feat(TPC): don't log the entire datachannel event

In Rect Native it will stall the app as it's huge.
master
Saúl Ibarra Corretgé 8 lat temu
rodzic
commit
07c3a371b5
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      modules/RTC/TraceablePeerConnection.js

+ 1
- 1
modules/RTC/TraceablePeerConnection.js Wyświetl plik

@@ -270,7 +270,7 @@ export default function TraceablePeerConnection(
270 270
     };
271 271
     this.ondatachannel = null;
272 272
     this.peerconnection.ondatachannel = event => {
273
-        this.trace('ondatachannel', event);
273
+        this.trace('ondatachannel');
274 274
         if (this.ondatachannel !== null) {
275 275
             this.ondatachannel(event);
276 276
         }

Ładowanie…
Anuluj
Zapisz