Skip to content

Commit 5a13c36

Browse files
committed
webrtc: remove "LOG" prefix from informational messages
Signed-off-by: László Várady <[email protected]>
1 parent 55d22e1 commit 5a13c36

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
@@ -43,7 +43,7 @@ export class MediaHandler {
4343
* undefined treated as unset
4444
*/
4545
public async setAudioInput(deviceId: string): Promise<void> {
46-
logger.info("LOG setting audio input to", deviceId);
46+
logger.info("Setting audio input to", deviceId);
4747

4848
if (this.audioInput === deviceId) return;
4949

@@ -56,7 +56,7 @@ export class MediaHandler {
5656
* @param {AudioSettings} opts audio options to set
5757
*/
5858
public async setAudioSettings(opts: AudioSettings): Promise<void> {
59-
logger.info("LOG setting audio settings to", opts);
59+
logger.info("Setting audio settings to", opts);
6060

6161
this.audioSettings = Object.assign({}, opts) as AudioSettings;
6262
await this.updateLocalUsermediaStreams();
@@ -68,7 +68,7 @@ export class MediaHandler {
6868
* undefined treated as unset
6969
*/
7070
public async setVideoInput(deviceId: string): Promise<void> {
71-
logger.info("LOG setting video input to", deviceId);
71+
logger.info("Setting video input to", deviceId);
7272

7373
if (this.videoInput === deviceId) return;
7474

0 commit comments

Comments
 (0)