Skip to content

Commit

Permalink
removing troubleshooting logging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkhamLee committed Feb 21, 2024
1 parent 2c477d2 commit 5e2f6cc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions etl_pipelines/github_actions_data/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ def parse_data(data: dict) -> dict:

# validate data
response = validate_data(data)
logger.debug(data)

if response == 0:
parsed_payload = {"total_minutes": data["total_minutes_used"],
Expand Down Expand Up @@ -131,7 +130,6 @@ def main():
data = get_github_data(GITHUB_TOKEN, full_url)

payload = parse_data(data)
logger.info(f'payload ready: {payload}')

write_data(payload)

Expand Down

0 comments on commit 5e2f6cc

Please sign in to comment.