Log ID instead of object

as otherwise it recurses and logs the entire client + store
This commit is contained in:
David Baker 2022-09-06 15:11:45 +01:00
parent 7304411c5d
commit 0360889fd6

View file

@ -80,7 +80,7 @@ export const useLoadGroupCall = (
const room = await fetchOrCreateRoom();
logger.debug(`Fetched / joined room ${roomIdOrAlias}`);
const groupCall = client.getGroupCallForRoom(room.roomId);
logger.debug("Got group call", groupCall);
logger.debug("Got group call", groupCall.groupCallId);
if (groupCall) return groupCall;