From 1a0b11ff7ea9f5990b7b9dd170c0d735466fea68 Mon Sep 17 00:00:00 2001 From: Bruno Windels <274386+bwindels@users.noreply.github.com> Date: Fri, 29 Apr 2022 14:59:19 +0100 Subject: [PATCH] also log payload when receiving to_device call message, help debug with thirdroom --- src/matrix/calls/PeerCall.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix/calls/PeerCall.ts b/src/matrix/calls/PeerCall.ts index edc245a4..c45529e9 100644 --- a/src/matrix/calls/PeerCall.ts +++ b/src/matrix/calls/PeerCall.ts @@ -300,7 +300,7 @@ export class PeerCall implements IDisposable { } handleIncomingSignallingMessage(message: SignallingMessage, partyId: PartyId): Promise { - return this.logItem.wrap({l: "receive", id: message.type, callId: message.content.call_id}, async log => { + return this.logItem.wrap({l: "receive", id: message.type, callId: message.content.call_id, payload: message}, async log => { switch (message.type) { case EventType.Invite: if (this.callId !== message.content.call_id) {