Skip to content

with.log · Step logs level

Configure the log level for the current step and its children.

yaml
- _: Say hi
  log: Bonjour, mes amis !
  with:
    log: debug

Available log levels are:

  • disabled (no logs)
  • error
  • warn
  • info
  • log (default)
  • debug
  • trace

CAUTION

debug and trace log levels may leak sensitive information as they are intended for development and debugging. Ensure logs are properly sanitized before sharing them.

NOTE

This setting may be forcefully overridden at runtime in certain situations, such as when using an user explicitly set a log level through the CLI (e.g. esquie run --logs warn) or environment variables (ESQUIE_LOGS).

Released under the MIT License.