Explorar el Código

Improve ICE candidate error event logging

Lennart Grahl hace 6 años
padre
commit
222e067075
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/services/peerconnection.ts

+ 2 - 1
src/services/peerconnection.ts

@@ -107,7 +107,8 @@ export class PeerConnectionHelper {
             }
         };
         this.pc.onicecandidateerror = (e: RTCPeerConnectionIceErrorEvent) => {
-            this.log.error('ICE candidate error:', e);
+            this.log.warn(`ICE candidate error: ${e.errorText} ` +
+                `(url=${e.url}, host-candidate=${e.hostCandidate}, code=${e.errorCode})`);
         };
         this.pc.oniceconnectionstatechange = () => {
             this.log.debug('ICE connection state change:', this.pc.iceConnectionState);