Skip to content

Commit d792551

Browse files
committed
Remove logging
1 parent eba8c99 commit d792551

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

tap_github/repository_streams.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1694,17 +1694,12 @@ class ReviewCommentReactionsStream(GitHubRestStream):
16941694
state_partitioning_keys: ClassVar[list[str]] = ["repo", "org"]
16951695

16961696
def post_process(self, row: dict, context: Context | None = None) -> dict:
1697-
self.logger.info(f"Context: {context}")
1698-
self.logger.info(f"Unprocessed row: {row}")
1699-
17001697
row = super().post_process(row, context)
1701-
self.logger.info(f"Processed row: {row}")
17021698

17031699
if context:
17041700
row["pull_request_url"] = context.get("pull_request_url")
17051701
row["comment_id"] = context.get("comment_id")
17061702
row["comment_url"] = context.get("comment_url")
1707-
self.logger.info(f"Post-Processed row: {row}")
17081703

17091704
return row
17101705

0 commit comments

Comments
 (0)