Browse Source

ref(TrackStreamingStatus): adjust log msg

dev1
Pawel Domas 3 years ago
parent
commit
c0e24818e6
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      modules/connectivity/TrackStreamingStatus.ts

+ 2
- 2
modules/connectivity/TrackStreamingStatus.ts View File

@@ -39,7 +39,7 @@ export enum TrackStreamingStatus {
39 39
 
40 40
 type StreamingStatusMap = {
41 41
     // TODO: Replace this hand crafted VideoType when we convert VideoType.js to Typescript.
42
-    videoType?: VideoType, 
42
+    videoType?: VideoType,
43 43
     startedMs?: number,
44 44
     p2p?: boolean,
45 45
     streamingStatus?: string,
@@ -580,7 +580,7 @@ export class TrackStreamingStatusImpl {
580 580
             const timeout = this._getVideoFrozenTimeout();
581 581
 
582 582
             this.trackTimer = window.setTimeout(() => {
583
-                logger.debug(`Set RTC mute timeout for: ${sourceName} of ${timeout} ms`);
583
+                logger.debug(`Set track RTC muted for: ${sourceName} after the timeout of ${timeout} ms`);
584 584
                 this.clearTimeout();
585 585
                 this.figureOutStreamingStatus();
586 586
             }, timeout);

Loading…
Cancel
Save