https://dagster.io/ logo
#ask-community
Title
# ask-community
s

Sanidhya Singh

05/30/2022, 9:27 AM
Hi there, dagster-dbt is running the following command
Copy code
dbt --no-use-color --log-format json run --project-dir ./dbt_dir
is there any way for me to be able to control what arguments are passed to the CLI? I’d like to be able to remove
--no-use-color
and
--log-format json
from the invocation
o

owen

05/31/2022, 4:21 PM
hi @Sanidhya Singh the
--log-format json
is currently a required part of the dbt invocation, as we parse out specific fields from the response. The
--no-use-color
is less necessary, although it's there because the event log in dagit doesn't support color in the way that the terminal does. Just to confirm, are you viewing the dbt logs directly in the terminal, or in Dagit? there's a known issue (hopefully to be fixed this week) that's causing the Dagit logs to be shown as json-formatted strings, so it's possible that fixing that will solve your issue as well
👍 1
2 Views