Automation Logs
Where to find it
Sidebar > CRM > [Entity] > [Status Group] > ⋮ Menu on stage column > Stage Automation > Logs
Automation Logs
Every automation execution is recorded in Automation Logs. Logs show which steps ran, whether they succeeded or failed, and provide details for debugging. Use logs to verify your automation works as expected and to troubleshoot issues when something goes wrong.

Where to Find Logs
- Go to CRM in the sidebar.
- Select your Entity and then the Status Group (pipeline).
- On the Kanban board, click the ⋮ (three-dots menu) on the stage column header.
- Select Stage Automation.
- In the automation visualizer, look for the Logs section or tab.
You'll see a list of automation runs for that stage, sorted by date (most recent first).
What Logs Show
Each log entry includes:
| Field | Description |
|---|---|
| Automation name | Which automation ran |
| Trigger | What event started the run (e.g., "Lead created") |
| Status | Success, Failed, or Partial (some steps failed) |
| Started at | When the automation began |
| Duration | How long it took to run |
| Steps | Expandable list of each action and its result |

Step-Level Details
Click a log entry to expand it and see each step:
- Step name – The action type (e.g., Email, Webhook).
- Status – Success (✓), Failed (✗), or Skipped (e.g., Filter condition false).
- Input – What data was passed to the step (e.g., lead ID, variables).
- Output – What the step returned (e.g., webhook response, formatted value).
- Error – For failed steps, the error message or stack trace.
Debugging Failed Steps
When a step fails:
- Open the log for the failed run.
- Find the failed step – It will show an error icon and message.
- Check the error – Common issues: invalid email, webhook URL unreachable, missing required field.
- Fix the automation – Update the action configuration (e.g., add a Filter to skip leads without email).
- Retry – If supported, use the Retry button to re-run the failed step or entire automation.

Retrying Failed Automations
Some automations support retry:
- Retry step – Re-run only the failed step (if the lead data hasn't changed).
- Retry automation – Re-run the entire automation from the start.
Retry is useful when the failure was transient (e.g., temporary API outage). If the failure is due to bad data or configuration, fix the automation first, then retry.
Best Practices
- Monitor logs regularly – Spot patterns (e.g., same step failing for many leads).
- Use filters – Reduce noise by filtering logs by status (Failed only) or automation.
- Fix root causes – Don't just retry; fix the underlying issue to prevent future failures.