Debug a tool¶
Learn how to identify, review & diagnose bugs.
Navigate to the Tool¶
- Click on TOOLS.
- Select DEBUG.
- Choose the tool you want to debug (e.g., Play-tok).
View execution events¶
- Once on the tool page, click EVENTS.
- A list of all previous executions will appear, with the latest one at the top.
- Select the execution you want to debug.
Inspect event details¶
- In the execution view, you’ll see three tabs:
- Execution
- Input Attributes
- Output Attributes
- At the TRIGGER confirm the input by clicking the checkmark.
- Review the INTEGRATION EVENT, which shows how the form was submitted.
- Look at the DYNAMIC VALUES, which display the output of the task.
Debug at the task level¶
- For an API TASK:
- Check COMPUTE ARGUMENTS to see task inputs
- Review the STATUS (done, failed, etc.)
- Look at DYNAMIC VALUES for the output
- For a WIDGET RESPONSE TASK:
- Again, check Compute Arguments, Status, and Dynamic Values.
Debug a failed execution¶
- Select a tool with a failed execution and go to EVENTS.
- Find and click on a failed entry.
- Check each task execution:
- If the last task has nothing, the failure likely occurred at the API task level.
- Review INPUT ATTRIBUTES for the trigger.
- Review the API TASK:
- Compute Arguments
- Input Attributes
- Status (likely failed)
- Exception details (e.g., “unauthorized issue,” token expired).
- Click OK to confirm and continue checking other executions if needed.