Skip to content

Commit 6476e04

Browse files
committed
webrtc: remove "LOG" prefix from informational messages
Signed-off-by: László Várady <[email protected]>
1 parent 078395a commit 6476e04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/webrtc/mediaHandler.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export class MediaHandler extends TypedEventEmitter<
7171
* undefined treated as unset
7272
*/
7373
public async setAudioInput(deviceId: string): Promise<void> {
74-
logger.info("LOG setting audio input to", deviceId);
74+
logger.info("Setting audio input to", deviceId);
7575

7676
if (this.audioInput === deviceId) return;
7777

@@ -84,7 +84,7 @@ export class MediaHandler extends TypedEventEmitter<
8484
* @param {AudioSettings} opts audio options to set
8585
*/
8686
public async setAudioSettings(opts: AudioSettings): Promise<void> {
87-
logger.info("LOG setting audio settings to", opts);
87+
logger.info("Setting audio settings to", opts);
8888

8989
this.audioSettings = Object.assign({}, opts) as AudioSettings;
9090
await this.updateLocalUsermediaStreams();
@@ -96,7 +96,7 @@ export class MediaHandler extends TypedEventEmitter<
9696
* undefined treated as unset
9797
*/
9898
public async setVideoInput(deviceId: string): Promise<void> {
99-
logger.info("LOG setting video input to", deviceId);
99+
logger.info("Setting video input to", deviceId);
100100

101101
if (this.videoInput === deviceId) return;
102102

0 commit comments

Comments
 (0)