Commit 6476e04 1 parent 078395a commit 6476e04 Copy full SHA for 6476e04
File tree 1 file changed +3
-3
lines changed
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<
71
71
* undefined treated as unset
72
72
*/
73
73
public async setAudioInput ( deviceId : string ) : Promise < void > {
74
- logger . info ( "LOG setting audio input to" , deviceId ) ;
74
+ logger . info ( "Setting audio input to" , deviceId ) ;
75
75
76
76
if ( this . audioInput === deviceId ) return ;
77
77
@@ -84,7 +84,7 @@ export class MediaHandler extends TypedEventEmitter<
84
84
* @param {AudioSettings } opts audio options to set
85
85
*/
86
86
public async setAudioSettings ( opts : AudioSettings ) : Promise < void > {
87
- logger . info ( "LOG setting audio settings to" , opts ) ;
87
+ logger . info ( "Setting audio settings to" , opts ) ;
88
88
89
89
this . audioSettings = Object . assign ( { } , opts ) as AudioSettings ;
90
90
await this . updateLocalUsermediaStreams ( ) ;
@@ -96,7 +96,7 @@ export class MediaHandler extends TypedEventEmitter<
96
96
* undefined treated as unset
97
97
*/
98
98
public async setVideoInput ( deviceId : string ) : Promise < void > {
99
- logger . info ( "LOG setting video input to" , deviceId ) ;
99
+ logger . info ( "Setting video input to" , deviceId ) ;
100
100
101
101
if ( this . videoInput === deviceId ) return ;
102
102
You can’t perform that action at this time.
0 commit comments