Qwame
02/15/2023, 3:30 PMjob.execute_in_process
and I see logs in the terminal. I could really use the colors in the dbt logs that show in my terminal. How do I override the --no-use-color
flag in dbt_cli_resource
? I am thinking
'resources:
dbt:
config:
no-use-color: False
rex
02/15/2023, 5:17 PMresources:
dbt:
config:
json_log_format: False
Qwame
02/15/2023, 5:52 PMjob.execute_in_process(
run_config = {
'loggers': {'console': {'config': {'log_level': 'INFO'}}},
'resources': {'dbt': {'config': {'json_log_format': False }}}
}
)
But it didn't workdbt_cli_resource
configuration. dbt_cli_resource.configured({"json_log_format": False})