Devin
05/08/2026, 2:21 PMVapi Support Bot
05/08/2026, 2:22 PMObserve > Call Logs section in your [Vapi dashboard](https://dashboard.vapi.ai/), where you can see full call transcripts, error messages, and tool execution results. This helps pinpoint where things break or change unexpectedly, even if your configuration hasn't changed.
Tip: Include the call ID and error details if you need to escalate to support or community channels for further help.
For more details, see the [Vapi debugging guide](https://docs.vapi.ai/debugging).
Source:
- [Debugging voice agents](https://docs.vapi.ai/debugging)Devin
05/08/2026, 2:25 PMDevin
05/08/2026, 2:26 PMVapi Support Bot
05/08/2026, 2:27 PMtranscript artifact and sort entries by their time field. For example, in Python:
python
# Assume transcript is a list of dicts from call.artifact.transcript
ordered = sorted(transcript, key=lambda x: x["time"])
This will let you accurately reconstruct the call flow for analysis in Langfuse or other tools.
See the [call recording & transcript docs](https://docs.vapi.ai/assistants/call-recording) for more details.
Source:
- [Call recording, logging and transcribing](https://docs.vapi.ai/assistants/call-recording)Vapi Support Bot
05/08/2026, 2:28 PMDevin
05/08/2026, 2:30 PMVapi Support Bot
05/08/2026, 2:30 PMMatt
05/08/2026, 2:32 PMDevin
05/08/2026, 2:34 PMAJ
05/08/2026, 3:11 PMDevin
05/08/2026, 3:13 PM