Skip to content

Commit

Permalink
Remove spammy RTCSession log line (#4180)
Browse files Browse the repository at this point in the history
This can get quite spammy in rooms with legacy calls and isn't really
neccesary: remove it to cut down on the log spam.
  • Loading branch information
dbkr authored Apr 30, 2024
1 parent 2bf5547 commit efdae0d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/matrixrtc/MatrixRTCSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ export class MatrixRTCSession extends TypedEventEmitter<MatrixRTCSessionEvent, M
for (const memberEvent of callMemberEvents) {
const eventMemberships: CallMembershipData[] = memberEvent.getContent()["memberships"];
if (eventMemberships === undefined) {
logger.debug(`Ignoring malformed member event from ${memberEvent.getSender()}: no memberships section`);
continue;
}
if (!Array.isArray(eventMemberships)) {
Expand Down

0 comments on commit efdae0d

Please sign in to comment.