From da03ec07b7411238a13485d7aa4ead51a28b76d8 Mon Sep 17 00:00:00 2001 From: ao-anam Date: Wed, 14 May 2025 12:22:42 +0100 Subject: [PATCH] chore: remove debug logging --- src/modules/StreamingClient.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/modules/StreamingClient.ts b/src/modules/StreamingClient.ts index 436cefe..a8a17a3 100644 --- a/src/modules/StreamingClient.ts +++ b/src/modules/StreamingClient.ts @@ -243,9 +243,6 @@ export class StreamingClient { // add transceivers this.peerConnection.addTransceiver('video', { direction: 'recvonly' }); if (this.disableInputAudio) { - console.log( - 'StreamingClient - initPeerConnection: adding recvonly audio transceiver', - ); this.peerConnection.addTransceiver('audio', { direction: 'recvonly' }); } else { this.peerConnection.addTransceiver('audio', { direction: 'sendrecv' }); @@ -499,10 +496,6 @@ export class StreamingClient { try { const offer: RTCSessionDescriptionInit = await this.peerConnection.createOffer(); - console.log( - 'StreamingClient - initPeerConnectionAndSendOffer: offer', - offer, - ); await this.peerConnection.setLocalDescription(offer); } catch (error) { console.error(