File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments