Skip to main content

Logging

Logs are detailed notes written while an automation step is running.

They help you understand what the step tried to do, what worked, what failed, and what happened right before a problem.

The Basic Idea

Step Starts
A log note records that work began
Step Works
Logs capture useful progress messages
Step Finishes
Logs show success, warning, or failure details
Simple: logs are the step-by-step notes behind the status you see on screen.

What a Log Entry Tells You

PartMeaning
TimeWhen the message happened
LevelHow important the message is
MessageWhat happened
StepWhich part of the automation wrote the message

You usually do not need to read every log line. Start with warnings and errors, then look at the messages just before them.

Log Levels

LevelMeaningHow to treat it
ERRORSomething went wrongStart here when a run fails
WARNSomething may need attentionReview it, especially if it repeats
INFONormal progress updateUseful for understanding what happened
DEBUGExtra detail for investigationUse only when troubleshooting

Examples in Plain Language

MessageWhat it meansWhat to do
Connection timeoutThe step waited but the other system did not respondRetry or check the external system
Authentication failedThe step could not sign inCheck credentials or permissions
No data returnedThe request worked but found no matching dataCheck filters, dates, or source data
Rate limitedThe other system asked the automation to slow downUse a retry with a longer wait
File not foundThe step could not find the expected fileCheck the file path or previous step

How to Use Logs When a Run Fails

Open Failed Run
Start from the run that failed
Find Failed Step
Look for the first step marked failed
Read Error
Check the error and the messages before it
Decide Next Step
Retry, fix setup, change input, or contact the owner

What to Look For

ClueWhat it may mean
Error appears immediatelySetup, permission, or missing input issue
Error appears after a long waitTimeout or slow external system
Warning appears before the errorThe warning may explain the root cause
Same error appears in many runsConfiguration or external system issue
Error appears after a previous step produced empty outputThe failed step may not have received the data it needed

Debug Mode

Debug mode shows extra detail for troubleshooting.

Use it when:

  • A step fails but the normal error is not clear
  • You need to confirm which input values are being used
  • You are checking why a step is slow
  • An administrator or support person asks for more detail

Avoid leaving debug mode on all the time. It can create many extra log messages and may show details that are not useful for everyday monitoring.

Reading Logs Without Getting Lost

Start with this order:

  1. Open the failed run.
  2. Find the first failed step.
  3. Filter to ERROR messages.
  4. Read the messages just before the first error.
  5. Check WARN messages if the error is unclear.
  6. Compare with a recent successful run if needed.

Log Patterns

PatternWhat it usually means
Ends with successThe step completed normally
Warning followed by retryA temporary issue happened and the system tried again
Warning followed by successThe step recovered
Error with no retryThe step failed and stopped
Long gap between messagesThe step may have been waiting on another system

Sensitive Information

Logs should help troubleshooting without exposing private information.

Avoid putting these in logs:

  • Passwords
  • API keys
  • Secret tokens
  • Full credit card numbers
  • Sensitive customer data
  • Private personal information

If sensitive information appears in logs, treat it as a security issue and contact the system owner.

Good Logging Habits

Use clear step names

Good step names make logs much easier to understand.

Look for the first error

Later errors may only be side effects of the first problem.

Use timestamps

Long gaps can show where the automation waited or slowed down.

Save useful error messages

If you need help, share the failed step name, time, and error message with the owner or support team.

Watch repeated warnings

A warning that repeats often may become tomorrow's failure.