Skip to content

Commit

Permalink
Initial structured logging work with fire_event (#4137)
Browse files Browse the repository at this point in the history
add event type modeling and fire_event calls

automatic commit by git-black, original commits:
  f9ef9da
  • Loading branch information
Nathaniel May authored and iknox-fa committed Feb 8, 2022
1 parent 1cda434 commit d1c196c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions core/dbt/task/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@
from dbt.logger import DbtProcessState
from dbt.clients.system import write_file
from dbt.events.types import (
ManifestDependenciesLoaded, ManifestLoaderCreated, ManifestLoaded, ManifestChecked,
ManifestFlatGraphBuilt, ParsingStart, ParsingCompiling, ParsingWritingManifest, ParsingDone,
ReportPerformancePath
ManifestDependenciesLoaded,
ManifestLoaderCreated,
ManifestLoaded,
ManifestChecked,
ManifestFlatGraphBuilt,
ParsingStart,
ParsingCompiling,
ParsingWritingManifest,
ParsingDone,
ReportPerformancePath,
)
from dbt.events.functions import fire_event
from dbt.graph import Graph
Expand Down

0 comments on commit d1c196c

Please sign in to comment.