Skip to main content

Log

Echo messages to the console with full template variable support.


Plugin: log Group: Core

Task TypeAlias
dev.bringup.plugin.core.log.LogPrimary
dev.bringup.plugin.core.log.EchoEcho alias

Examples

Simple message

id: log-example
namespace: examples
description: Log messages at different stages

tasks:
- id: start-message
type: dev.bringup.plugin.core.log.Log
message: "Flow execution started"

- id: process
type: dev.bringup.plugin.core.shell.Shell
commands:
- echo "Doing work..."

- id: end-message
type: dev.bringup.plugin.core.log.Log
message: "Flow execution completed successfully"

Properties


Common Task Properties

See Shell > Common Task Properties for id, type, description, disabled, timeout, retry, allow_failure, run_if, and worker_group.


Notes

  • Log tasks are lightweight and ideal for adding visibility into flow execution.
  • Template variables are converted to shell environment variable references during transpilation.
  • Use Log tasks for debugging, progress indicators, and audit trails.
  • The Echo alias (dev.bringup.plugin.core.log.Echo) behaves identically to Log.