Skip to main content

Log Level

This page explains how to customize the level of logs to be displayed in the pipeline execution output.
By default, the output will be displayed at a normal level, but it can be set to:
debug: will show all the output helping to find the reason of an error in the execution.
warning: will display only the function that produced an error.

1. In the main branch you will edit the YAML file named .github/workflows/github-ci.yaml

2. In the github-ci.yaml file search for the Features section, you will find it like this:


## Features -------------------------------------------------------------------------------------#

3. Bellow the section title, add the following configuration and change the values as you need:

    # Log level
log_level: 'debug'

4. Commit and enjoy! ✨