Skip to main content

Print output

Suppress print() messages in stdout

Supply --no-print flag to dbt run to suppress print() messages from showing in stdout.

dbt --no-print run

Printer width

By default, dbt will print out lines padded to 80 characters wide. You can change this setting by adding the following to your profiles.yml file:

profiles.yml
config:
printer_width: 120

By default, dbt will colorize the output it prints in your terminal. You can turn this off by adding the following to your profiles.yml file:

profiles.yml
config:
use_colors: False
dbt --use-colors run
dbt --no-use-colors run
0