Debug / Log
Writes a message to the console or staging output for debugging.
Utility
Use this while building or testing flows so you can see what values are moving through the flow.
When to use it
- Check that a trigger is firing.
- Inspect a value before sending it to another node.
Routing behavior
Continues through its connected downstream path when it completes successfully.
Properties
| Property | Type | Required | Details |
|---|---|---|---|
message message | expression | Optional | Message to log (supports expressions) |
level level | select | Optional | Log level |
printProd printProd | boolean | Optional | Print in production environment |
Common mistakes
- Debug logs are for visibility, not business logic.
- Do not rely on them as your only destination.