From 4820cf8cac87824e9ed0bca773433a2c107ee81f Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 19 Jan 2021 19:28:08 +0000 Subject: [PATCH] Log call ID here too --- src/webrtc/call.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webrtc/call.ts b/src/webrtc/call.ts index b4ab781bc..5cc1c5c45 100644 --- a/src/webrtc/call.ts +++ b/src/webrtc/call.ts @@ -1242,7 +1242,7 @@ export class MatrixCall extends EventEmitter { return; // because ICE can still complete as we're ending the call } 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 // chrome doesn't implement any of the 'onstarted' events yet