BlocksConsole & Logging
Console Log
Log a message to the project console for real-time debugging.
The Console Log block allows you to output custom messages and variable values to the project's internal console. This is essential for debugging your flows, verifying variable data, and monitoring execution paths without affecting the final response.
Configuration
| Field | Required | Description |
|---|---|---|
| Message | ✅ | The text or variable content you wish to log to the console. |
Debugging Tip
Use the Console Log block during development to inspect the contents of variables like {request.body} or {VAR_test} at specific points in your flow.
Error Handling
MESSAGE_MISSING— Triggered when the Message field is empty or resolves to an empty string.
Example
- Add a Console Log block to your flow.
- In the Message field, enter:
Processing request for user: {request.body.email}. - Run your flow.
- Check the Project Console in the dashboard to see the output.
