Skip to content

Commit

Permalink
[dagster-dbt] remove annoying color formatting strings from log output (
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenKephart committed May 2, 2022
1 parent faad5ea commit c99184c
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ def execute_cli(

# Format the dbt CLI flags in the command..
warn_error = ["--warn-error"] if warn_error else []
command_list = [executable, "--log-format", "json", *warn_error, *command.split(" ")]
command_list = [
executable,
"--no-use-color",
"--log-format",
"json",
*warn_error,
*command.split(" "),
]

for flag, value in flags_dict.items():
if not value:
Expand Down

0 comments on commit c99184c

Please sign in to comment.