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