Skip to content

Commit

Permalink
fix(targets): Include SCHEMA message count in target logs
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Jul 7, 2023
1 parent 5bc4c57 commit 82cbba6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion singer_sdk/target_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,10 @@ def _process_lines(self, file_input: t.IO[str]) -> t.Counter[str]:

self.logger.info(
"Target '%s' completed reading %d lines of input "
"(%d records, %d batch manifests, %d state messages).",
"(%d schemas, %d records, %d batch manifests, %d state messages).",
self.name,
line_count,
counter[SingerMessageType.SCHEMA],
counter[SingerMessageType.RECORD],
counter[SingerMessageType.BATCH],
counter[SingerMessageType.STATE],
Expand Down

0 comments on commit 82cbba6

Please sign in to comment.