Commit 5a13c36 1 parent 55d22e1 commit 5a13c36 Copy full SHA for 5a13c36
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 @@ -43,7 +43,7 @@ export class MediaHandler {
43
43
* undefined treated as unset
44
44
*/
45
45
public async setAudioInput ( deviceId : string ) : Promise < void > {
46
- logger . info ( "LOG setting audio input to" , deviceId ) ;
46
+ logger . info ( "Setting audio input to" , deviceId ) ;
47
47
48
48
if ( this . audioInput === deviceId ) return ;
49
49
@@ -56,7 +56,7 @@ export class MediaHandler {
56
56
* @param {AudioSettings } opts audio options to set
57
57
*/
58
58
public async setAudioSettings ( opts : AudioSettings ) : Promise < void > {
59
- logger . info ( "LOG setting audio settings to" , opts ) ;
59
+ logger . info ( "Setting audio settings to" , opts ) ;
60
60
61
61
this . audioSettings = Object . assign ( { } , opts ) as AudioSettings ;
62
62
await this . updateLocalUsermediaStreams ( ) ;
@@ -68,7 +68,7 @@ export class MediaHandler {
68
68
* undefined treated as unset
69
69
*/
70
70
public async setVideoInput ( deviceId : string ) : Promise < void > {
71
- logger . info ( "LOG setting video input to" , deviceId ) ;
71
+ logger . info ( "Setting video input to" , deviceId ) ;
72
72
73
73
if ( this . videoInput === deviceId ) return ;
74
74
You can’t perform that action at this time.
0 commit comments