log-path
dbt_project.yml
log-path: directorypath
Definition
Optionally specify a custom directory where dbt will write logs.
Default
By default, dbt will write to the logs
directory, i.e. log-path: logs
Examples
Write logs to a subdirectory named dbt_logs
instead of logs
dbt_project.yml
log-path: dbt_logs
0