From eab0261344dba9ec666f97cfa227cb1631d49588 Mon Sep 17 00:00:00 2001 From: Alex P Date: Tue, 9 Sep 2025 22:44:33 +0000 Subject: [PATCH] Cleanup: remove devLog with calculated param --- ui/src/hooks/useMicrophone.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ui/src/hooks/useMicrophone.ts b/ui/src/hooks/useMicrophone.ts index 6579490d..ec4c92ce 100644 --- a/ui/src/hooks/useMicrophone.ts +++ b/ui/src/hooks/useMicrophone.ts @@ -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) => {