Debug Mode
Debug mode gives you X-ray vision into your blueprint execution.
Activating Debug Mode
- Press
Cmd + 2 - Or click the 🐛 Debug button in the toolbar
What You See
Live Values
Each wire shows its current value:
[Text: "Hello"] ──"Hello"──▶ [AI Generate]
↑
Value labelExecution State
Nodes show their current state:
| State | Appearance |
|---|---|
| Idle | Normal |
| Running | Blue glow, spinner |
| Completed | Green checkmark |
| Error | Red border, ❌ |
Execution Order
Numbers show the order nodes executed:
[1] Trigger → [2] AI → [3] SpeakDebug Panel
The debug panel (right side) shows:
- Variables: All current variable values
- Logs: Execution history
- Errors: Any failures with details
Breakpoints
Pause execution at specific nodes:
- Click the left edge of a node
- A red dot appears (breakpoint)
- Execution pauses here
- Click Continue to proceed
Step Through
Execute one node at a time:
- Add a breakpoint or pause execution
- Press
F10to step to next node - Inspect values at each step
Common Issues
"Value is undefined"
The input wire isn't connected or the source node failed.
"Type mismatch"
Wrong data type—check wire colors.
"Execution timeout"
Node took too long—check for infinite loops.
Tips
- Use Result Viewer: Add result viewer nodes to inspect values
- Check logs: The debug panel shows detailed logs
- Simplify first: Test small parts before full blueprints