From f9a58baa1e46791c5e36f6c4e2e77d7d582fcffa Mon Sep 17 00:00:00 2001 From: rishikanthc Date: Wed, 31 Dec 2025 15:53:35 -0800 Subject: [PATCH] clean lint --- web/frontend/src/components/SystemAudioRecorder.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/frontend/src/components/SystemAudioRecorder.tsx b/web/frontend/src/components/SystemAudioRecorder.tsx index 3ea692c5..a53985a3 100644 --- a/web/frontend/src/components/SystemAudioRecorder.tsx +++ b/web/frontend/src/components/SystemAudioRecorder.tsx @@ -269,7 +269,7 @@ export function SystemAudioRecorder({ }); // Debug: Log what tracks we got - console.log("Display stream tracks:", { + console.info("Display stream tracks:", { video: displayStream.getVideoTracks().length, audio: displayStream.getAudioTracks().length, allTracks: displayStream.getTracks().map(t => ({ kind: t.kind, label: t.label }))