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 {