Ifeanyi
02/26/2026, 2:26 PMVapi Support Bot
02/26/2026, 2:28 PMObserve > Call Logs in your [Vapi dashboard](https://dashboard.vapi.ai/), select the affected call IDs, and review the transcript and audio at the specified timestamps.
This will help you pinpoint where the audio dropped or was not recognized, and you can also check for any error messages or tool execution issues directly in the log view.
Tip: Include these findings if you need to escalate to support for faster resolution.
[See Debugging Guide](https://docs.vapi.ai/debugging)
Source:
- [Debugging voice agents](https://docs.vapi.ai/debugging)Chiranjeet Mishra
02/26/2026, 4:32 PMFaizan @ UnitZero AI
02/26/2026, 8:31 PMChiranjeet Mishra
02/27/2026, 6:09 PM019c97a8-5379-7335-82d0-2521f6e8016d) — Audio cut out at 0:57
Root Cause: VAD (Voice Activity Detection) falsely detected "speech stopped" during a natural pause in a 30+ second long user utterance, or Deepgram STT session timed out. The transcript shows the user's sentence ended abruptly mid-thought: "...from station 8 44 plus 20 to station".
Fix: Increase minSpeechDurationMs in VAD settings and review Deepgram streaming timeout.
Call 2 (019c97ac-5d0c-7991-9f1b-d9ccd53e00a3) — "Didn't catch that" at 2:26
Root Cause: Premature endpointing. The user started hesitantly ("Well, it makes it...") with low confidence (0.66), and the endpointing buffer committed to a "didn't catch that" response BEFORE the user finished speaking. The final transcript arrived 840ms later with the complete answer ("Well, the mixer showed up.").
Fix: Increase endpointing patience to 150-200ms, implement partial transcript buffering, and lower the confidence threshold for triggering clarification requests.
Call 3 (same call) — Low volume at 1:20
Root Cause: User's audio volume was below VAD confidence threshold, causing the system to treat it as silence and trigger the idle timeout.
Fix: Lower VAD confidenceThreshold, consider audio level normalization, and replace idle timeout with "trouble hearing you" message.
General Recommendations
1. Enable Krisp denoiser for PSTN calls
2. Increase endpointing delay to 150-200ms
3. Implement adaptive endpointing based on question type
4. These are all configuration changes — no code modifications needed
Full details posted in the Slack thread.