We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8869b30 commit ca734afCopy full SHA for ca734af
modules/xmpp/JingleSessionPC.js
@@ -1468,6 +1468,9 @@ export default class JingleSessionPC extends JingleSession {
1468
this.peerconnection.onconnectionstatechange = () => {
1469
const icestate = this.peerconnection.iceConnectionState;
1470
1471
+ logger.log(`(TIME) ${this.isP2P ? 'P2P' : 'JVB'} PC state is now ${this.peerconnection.connectionState} `
1472
+ + `(ICE state ${this.peerconnection.iceConnectionState}):\t`, window.performance.now());
1473
+
1474
switch (this.peerconnection.connectionState) {
1475
case 'failed':
1476
// Since version 76 Chrome no longer switches ICE connection
0 commit comments