Log / Console
The Log / Console activity is used to log data within a workflow for debugging or tracking purposes. It helps monitor workflow execution by displaying important information in real time.
This activity is especially useful during workflow development and testing, allowing you to inspect variable values, API responses, and conditional outputs as the workflow executes.
Configuration
Consoles (Array)
- Required: Yes
- Description: Accepts an array of console inputs. Each entry can represent a message, variable, or data object you want to log. Multiple pieces of information can be displayed together.
Example Input:
{
"consoles": [
"Workflow started",
"{{payload.user_name}}",
]
}
Example Use Cases
- Debugging workflows by logging intermediate results.
- Tracking data flow between activities.
- Monitoring dynamic variable values during execution.
Notes
- Supports both plain text and dynamic expressions (e.g.,
{{payload.variable}}). - All console logs appear in the workflow execution logs.
- Useful for real-time inspection and troubleshooting during testing.