Cleanup: remove devLog with calculated param

This commit is contained in:
Alex P 2025-09-09 22:44:33 +00:00
parent e0b6e612c0
commit eab0261344
1 changed files with 0 additions and 6 deletions

View File

@ -195,12 +195,6 @@ export function useMicrophone() {
// Find the audio transceiver (should already exist with sendrecv direction)
const transceivers = peerConnection.getTransceivers();
devLog("Available transceivers:", transceivers.map((t: RTCRtpTransceiver) => ({
direction: t.direction,
mid: t.mid,
senderTrack: t.sender.track?.kind,
receiverTrack: t.receiver.track?.kind
})));
// Look for an audio transceiver that can send (has sendrecv or sendonly direction)
const audioTransceiver = transceivers.find((transceiver: RTCRtpTransceiver) => {