Execution logs
Each execution generates logs: a chronological record of what the bot was doing. They are your main tool to understand a run and, above all, to diagnose why something failed. Since the bot usually runs unattended and without anyone watching, the logs are your window to what happened.
Where do the logs come from?
Section titled “Where do the logs come from?”Hay dos fuentes:
- Messages that you issue with the Log activity in the playbook. They are the most valuable for diagnosing, because you decide what to count (“10 invoices read”, “customer without mail, skipped”). See Debugging › Log Levels.
- System messages: start and end of execution, unhandled errors and the activity/playbook in progress.
Each line identifies the playbook and the time, so you can follow the thread even if the automation invokes sub-playbooks.
View the logs
Section titled “View the logs”- Enter the environment and open the Executions tab.
- Click on the run you want to review (or its logs icon).
- The logs appear in chronological order, from first to last.

Niveles de log
Section titled “Niveles de log”Each message has a level that indicates its importance. On the portal they are distinguished by color:
| Nivel | Color | for what |
|---|---|---|
debug | Gris | Fine detail for diagnosis |
info | Blanco | Normal Process Events |
warning | Naranja | Unexpected situations that do not stop the process |
error | Rojo | Errors that affect the result |
Real-time logs
Section titled “Real-time logs”If the execution is in state running, the logs are displayed live, as the agent sends them, without you having to refresh the page. This way you can follow a long run step by step as it happens.
Take advantage of them: record with intention
Section titled “Take advantage of them: record with intention”The quality of your logs depends on how much you take care of them when designing. A playbook that only logs the final error is difficult to diagnose; one that leaves traces at key points is debugged in minutes:
- A
infoafter reading data: “15 records loaded from Excel”. - A
infobefore a critical action: “Sending invoice form FAC-021”. - A
warnin the alternative paths: “Client 304 has no mail; sending is skipped”. - A
errorwithin a catch: “Could not open ERP: ” + error (the error variable of a Try / Catch contains the message as text).
You see these same messages first in the Designer debug panel when testing locally, and then here in production.
Next steps
Section titled “Next steps”- States and lifecycle — understand why a run ended the way it did.
- Debug — output good logs from design.