Skip to content

Commit

Permalink
webrtc: remove "LOG" prefix from informational messages
Browse files Browse the repository at this point in the history
Signed-off-by: László Várady <[email protected]>
  • Loading branch information
MrAnno committed Oct 22, 2022
1 parent 55d22e1 commit 5a13c36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/webrtc/mediaHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class MediaHandler {
* undefined treated as unset
*/
public async setAudioInput(deviceId: string): Promise<void> {
logger.info("LOG setting audio input to", deviceId);
logger.info("Setting audio input to", deviceId);

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

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

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

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

Expand Down

0 comments on commit 5a13c36

Please sign in to comment.