Skip to content

Commit

Permalink
fix: Logging of report available dims/metrics to debug level (#150)
Browse files Browse the repository at this point in the history
Closes #149
  • Loading branch information
acarter24 authored Sep 8, 2023
1 parent 101a165 commit a4fe7db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tap_google_analytics/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ def _fetch_valid_api_metadata(self) -> Tuple[dict, dict]:
results = self.analytics.get_metadata(request)

prop_id = self.config["property_id"]
LOGGER.info(f"**** metadata for {prop_id}")
LOGGER.info(results)
LOGGER.debug(f"**** metadata for {prop_id}")
LOGGER.debug(results)

for metric in results.metrics:
metrics[metric.api_name] = metric.type_.name.replace("TYPE_", "").lower()
Expand Down

0 comments on commit a4fe7db

Please sign in to comment.