diff --git a/src/client.ts b/src/client.ts index 542f18515..e08e3bee7 100644 --- a/src/client.ts +++ b/src/client.ts @@ -1494,6 +1494,9 @@ export class MatrixClient extends TypedEventEmitter new RustSdkCryptoJs.UserId(u.userId))).then(() => { - this.prefixedLogger.debug(`Updated tracked users for room ${room.roomId}`); - }); + this.olmMachine + .updateTrackedUsers(members.map((u) => new RustSdkCryptoJs.UserId(u.userId))) + .catch((e) => this.prefixedLogger.error("Error initializing tracked users", e)); } /** diff --git a/src/rust-crypto/rust-crypto.ts b/src/rust-crypto/rust-crypto.ts index fde74fe90..f0c3c8973 100644 --- a/src/rust-crypto/rust-crypto.ts +++ b/src/rust-crypto/rust-crypto.ts @@ -1560,10 +1560,6 @@ class EventDecryptor { ) {} public async attemptEventDecryption(event: MatrixEvent): Promise { - this.logger.info( - `Attempting decryption of event ${event.getId()} in ${event.getRoomId()} from ${event.getSender()}`, - ); - // add the event to the pending list *before* attempting to decrypt. // then, if the key turns up while decryption is in progress (and // decryption fails), we will schedule a retry. diff --git a/src/webrtc/groupCallEventHandler.ts b/src/webrtc/groupCallEventHandler.ts index 3dae0ce40..2db54f66b 100644 --- a/src/webrtc/groupCallEventHandler.ts +++ b/src/webrtc/groupCallEventHandler.ts @@ -133,7 +133,6 @@ export class GroupCallEventHandler { break; } - logger.debug(`GroupCallEventHandler createGroupCallForRoom() processed room (roomId=${room.roomId})`); this.getRoomDeferred(room.roomId).resolve!(); }