From 9b0919350cabbe1841fc6bc16397ac81bf121f51 Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 9 Nov 2022 15:47:37 +0000 Subject: [PATCH] Log the call ID when receiving a call --- src/webrtc/groupCall.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webrtc/groupCall.ts b/src/webrtc/groupCall.ts index e20d388a2..737528253 100644 --- a/src/webrtc/groupCall.ts +++ b/src/webrtc/groupCall.ts @@ -676,7 +676,7 @@ export class GroupCall extends TypedEventEmitter< return; } - logger.log(`GroupCall: incoming call from: ${opponentMemberId}`); + logger.log(`GroupCall: incoming call from: ${opponentMemberId} with ID ${newCall.callId}`); // we are handlng this call as a PTT call, so enable PTT semantics newCall.isPtt = this.isPtt;