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 @@ -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
You can’t perform that action at this time.
0 commit comments