From 8d78ba25a251339a37f10c75a9237345be978ac6 Mon Sep 17 00:00:00 2001 From: ttipo Date: Thu, 25 Jun 2026 23:35:57 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=99=94=EC=83=81=ED=9A=8C=EC=9D=98=20?= =?UTF-8?q?=EC=97=B0=EA=B2=B0=20=EC=8B=A4=ED=8C=A8=20=EC=9B=90=EC=9D=B8?= =?UTF-8?q?=EC=9D=84=20=EC=BD=98=EC=86=94=EC=97=90=20=EB=A1=9C=EA=B9=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit connect 실패가 errorMsg(미렌더링 ref)로만 삼켜져 화면·콘솔 어디에도 드러나지 않아 디버깅이 불가능했다. catch 에서 console.error 로 원인을 남긴다. Co-Authored-By: Claude Opus 4.8 (1M context) --- frontend/src/composables/useLiveKitRoom.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/composables/useLiveKitRoom.ts b/frontend/src/composables/useLiveKitRoom.ts index 4bea8eb..89d8149 100644 --- a/frontend/src/composables/useLiveKitRoom.ts +++ b/frontend/src/composables/useLiveKitRoom.ts @@ -264,6 +264,8 @@ export function useLiveKitRoom() { } refresh() } catch (e) { + // 연결 실패 원인을 콘솔에 남긴다(이전엔 errorMsg 로만 삼켜져 화면·콘솔 어디에도 안 보였다). + console.error('[meeting] LiveKit 연결 실패:', e) errorMsg.value = e instanceof Error ? e.message : '연결에 실패했습니다.' await disconnect() } finally {