FluxyAPIFluxyAPI
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

FieldRequiredDescription
MessageThe 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

  1. Add a Console Log block to your flow.
  2. In the Message field, enter: Processing request for user: {request.body.email}.
  3. Run your flow.
  4. Check the Project Console in the dashboard to see the output.

On this page