Skip to content

Print

Prints one or more values to the console.

Prints the string representation of one or more input values to the console, with each value on a new line.

Behavior#

  • Standard Values: Any value type will be converted to its string representation and printed.
  • Streams: If a value is a data stream (like the content of a file), the node will efficiently print the entire stream's content.
  • Color: The output text color can be customized using the Color option.

This node is essential for debugging and displaying information during a graph execution.

Inputs#

Port Description
Exec
Executes the print operation.
Color
The text color for the output.
Values
The values to print. Each value is printed on a new line.

Outputs#

Port Description
Exec Out
Triggers after all values have been printed.

ID: core/print@v1