Skip to content

Commit

Permalink
Update CommandCompleted event to be a Debug level event
Browse files Browse the repository at this point in the history
We don't actually "always" need this event to be logged. Thus we've
updated it to `Debug` level. [Discussion Context](#7180 (comment))
  • Loading branch information
QMalcolm committed Mar 16, 2023
1 parent 8f81ff8 commit 92cec27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/events/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1828,7 +1828,7 @@ def message(self) -> str:


@dataclass
class CommandCompleted(InfoLevel, pt.CommandCompleted):
class CommandCompleted(DebugLevel, pt.CommandCompleted):
def code(self):
return "Q039"

Expand Down

0 comments on commit 92cec27

Please sign in to comment.