Skip to content

Commit

Permalink
fix: Properly log remote track mute changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
hristoterezov committed Oct 5, 2023
1 parent 3acf2b0 commit 6d46c58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions modules/RTC/JitsiRemoteTrack.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ export default class JitsiRemoteTrack extends JitsiTrack {
}

this.muted = value;

logger.info(`Mute ${this}: ${value}`);
this.emit(JitsiTrackEvents.TRACK_MUTE_CHANGED, this);
}

Expand Down
2 changes: 0 additions & 2 deletions modules/connectivity/TrackStreamingStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -621,8 +621,6 @@ export class TrackStreamingStatusImpl {

const sourceName = this.track.getSourceName();

logger.debug(`Detector on track signalling mute changed: ${sourceName}`, track.isMuted());

this.figureOutStreamingStatus();
}

Expand Down

0 comments on commit 6d46c58

Please sign in to comment.