Node ReferenceUtility
Log
Log a message during workflow execution for debugging.
The Log node records a message in the execution output. Use it for debugging or audit trails.
Configuration
| Field | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | Message template (supports expressions) |
| level | string | No | Log level: debug, info, warn, error (default: info) |
Template expressions
Token price: {birdeyeResponse.data.value}
Swap result: {jupiterResponse.data.outAmount}Output
A successful Log node returns:
{
"success": true,
"level": "info",
"message": "Token price: 150.23"
}If the rendered message is empty, the node short-circuits with:
{ "success": true, "skipped": true, "reason": "Log message is empty" }The rendered text is stored on the node run and shown in the execution detail view. Downstream nodes can reference the rendered message with the node's response name, for example {logResponse.message}.
