Skip to content

Debug

The builtin.debug allows you to print debug messages during run of the agent.

Parameters

NameDescriptionRequiredDefault
messageThe message you want to print. Is compatible with template syntax, and can make use of variablestrue

Examples

Simply output Jeff

yaml
- title: "Say 'Jeff'"
  type: "builtin.debug"
  parameters:
    message: "Jeff"

Output all existing variables

yaml
- title: "Output all variables"
  type: "builtin.debug"
  parameters:
    username: "{{ . }}"