Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions modules/connectivity/TrackStreamingStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -402,12 +402,10 @@
}

logger.debug(
`Figure out conn status for ${sourceName}, is video muted: ${
isVideoMuted} video track frozen: ${
isVideoTrackFrozen} p2p mode: ${
inP2PMode} is in forwarded sources: ${
isInForwardedSources} currentStatus => newStatus: ${
this.track.getTrackStreamingStatus()} => ${newState}`);
`Update: sourceName=${sourceName}, isVideoMuted=${isVideoMuted}, ` +

Check failure on line 405 in modules/connectivity/TrackStreamingStatus.ts

View workflow job for this annotation

GitHub Actions / Build

'+' should be placed at the beginning of the line
`isVideoTrackFrozen=${isVideoTrackFrozen}, isP2PMode=${inP2PMode}, ` +

Check failure on line 406 in modules/connectivity/TrackStreamingStatus.ts

View workflow job for this annotation

GitHub Actions / Build

'+' should be placed at the beginning of the line
`isInForwardedSources=${isInForwardedSources}, ` +

Check failure on line 407 in modules/connectivity/TrackStreamingStatus.ts

View workflow job for this annotation

GitHub Actions / Build

'+' should be placed at the beginning of the line
`currentState=${this.track.getTrackStreamingStatus()}, newState=${newState}`);

const oldStreamingStatus = this.streamingStatusMap || {};

Expand Down
Loading