-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Description
Is this a regression in a recent version of dbt-core?
- I believe this is a regression in dbt-core functionality
- I have searched the existing issues, and I could not find an existing issue for this regression
Current Behavior
According to -q:
Suppress all non-error logging to stdout. Does not affect {{ print() }} macro calls.
A new log is printed even though it's not an error.
(elementary) ☁ dbt_project [main] dbt run-operation hello
14:22:47 target not specified in profile 'elementary', using 'default'
14:22:47 Running with dbt=1.4.0
hello
(elementary) ☁ dbt_project [main] dbt -q run-operation hello
14:22:56 target not specified in profile 'elementary', using 'default'
helloExpected/Previous Behavior
Previously, the log was omitted when passing the -q flag.
(elementary) ☁ dbt_project [main] dbt run-operation hello
14:22:15 target not specified in profile 'elementary', using 'default'
14:22:16 Running with dbt=1.3.0
hello
(elementary) ☁ dbt_project [main] dbt -q run-operation hello
helloSteps To Reproduce
- Name a
defaulttarget without having atargetdefined. - Run a dbt command with the
-qflag.
Relevant log output
No response
Environment
- OS: macOS
- Python: 3.9.6
- dbt (working version): 1.3.0
- dbt (regression version): 1.4.0Which database adapter are you using with dbt?
No response
Additional Context
I'd love to contribute.
Reactions are currently unavailable