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#

  1. Find failed call in Transactions
  2. Open details
  3. Compare payload with Functions input schema
  4. 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.