1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-28 05:03:59 +03:00

Log call ID here too

This commit is contained in:
David Baker
2021-01-19 19:28:08 +00:00
parent c289effba0
commit 4820cf8cac

View File

@@ -1242,7 +1242,7 @@ export class MatrixCall extends EventEmitter {
return; // because ICE can still complete as we're ending the call return; // because ICE can still complete as we're ending the call
} }
logger.debug( logger.debug(
"ICE connection state changed to: " + this.peerConn.iceConnectionState, "Call ID " + this.callId + ": ICE connection state changed to: " + this.peerConn.iceConnectionState,
); );
// ideally we'd consider the call to be connected when we get media but // ideally we'd consider the call to be connected when we get media but
// chrome doesn't implement any of the 'onstarted' events yet // chrome doesn't implement any of the 'onstarted' events yet