Solaris AISolaris AI FlowDocs
Node ReferenceUtility

Log

Log a message during workflow execution for debugging.

View as Markdown

The Log node records a message in the execution output. Use it for debugging or audit trails.

Configuration

FieldTypeRequiredDescription
messagestringYesMessage template (supports expressions)
levelstringNoLog 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}.

Next steps

  • Delay - pause between nodes
  • Filter - conditionally pass data

On this page