stdout

Print data to stdout.

Description

  • stdout node prints the data to the standart output

Parameters

Parameter

Type

Required

Default

Comment

pretty

bool

No

False

Enable pretty print.

src

any

No

None

Data to print.

If src is not set, the stdout node prints the flowdata.

Examples

# Print flowdata to stdout
- stdout:
    name: "stdout"

# Print "hello" to stdout
- stdout:
    name: "stdout"
    src: "hello"

# Pretty print the value of 'foo' field in the blackboard to stdout
- stdout:
    name: "stdout"
    src: "{{ bb.foo }}"
    pretty: yes