Debugging#
Use Transactions and Debug pages to understand every API call.
Transactions page#
Open: Project -> Transactions
For each call, you can see:
- Function name
- Timestamp
- Status (
committed,evaluated,failed) - Transaction ID
- Duration
Start here whenever behavior looks wrong.
Debug page#
Open: Project -> Debug
Use it to inspect:
- Input payload sent
- Validation errors
- Returned response
- Runtime error message
Fast debug workflow#
- Find failed call in Transactions
- Open details
- Compare payload with Functions input schema
- Fix request and run again
When calls succeed#
Use transaction IDs from successful invoke calls in your app logs for traceability.
What just happened#
- You connected runtime API calls to visible console records.
- You now have a simple loop to diagnose failures quickly.
