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(