diff --git a/extensions/voice-call/src/webhook.ts b/extensions/voice-call/src/webhook.ts index 5f0b48f55bb..41c8b3e2254 100644 --- a/extensions/voice-call/src/webhook.ts +++ b/extensions/voice-call/src/webhook.ts @@ -259,7 +259,9 @@ export class VoiceCallWebhookServer { console.log( `[voice-call] Reaping stale call ${call.callId} (age: ${Math.round(age / 1000)}s, state: ${call.state})`, ); - void this.manager.endCall(call.callId).catch(() => {}); + void this.manager.endCall(call.callId).catch((err) => { + console.warn(`[voice-call] Reaper failed to end call ${call.callId}:`, err); + }); } } }, CHECK_INTERVAL_MS);