diff --git a/api/backend/job/site_mapping/site_mapping.py b/api/backend/job/site_mapping/site_mapping.py index 94ff4b1..d1bd22d 100644 --- a/api/backend/job/site_mapping/site_mapping.py +++ b/api/backend/job/site_mapping/site_mapping.py @@ -77,7 +77,6 @@ async def handle_site_mapping( pages: set[tuple[str, str]], ): site_map = SiteMap(**site_map_dict) - LOG.info(f"Handling site map: {site_map}") for action in site_map.actions: action_handler = ACTION_MAP[action.type] diff --git a/api/backend/routers/job_router.py b/api/backend/routers/job_router.py index f235284..e3546f5 100644 --- a/api/backend/routers/job_router.py +++ b/api/backend/routers/job_router.py @@ -91,8 +91,6 @@ async def download(download_job: DownloadJob): ) results = query(job_query, tuple(download_job.ids)) - LOG.info(f"Results: {results}") - csv_buffer = StringIO() csv_writer = csv.writer(csv_buffer, quotechar='"', quoting=csv.QUOTE_ALL) diff --git a/api/backend/utils.py b/api/backend/utils.py index 434e723..19ae4cc 100644 --- a/api/backend/utils.py +++ b/api/backend/utils.py @@ -44,9 +44,6 @@ def format_sql_row_to_python(row: dict[str, Any]): def format_json(items: list[Any]): for idx, item in enumerate(items): - LOG.info(f"Formatting item: {item}") if isinstance(item, (dict, list)): formatted_item = json.dumps(item) - LOG.info(f"Formatted item: {formatted_item}") - LOG.info(f"Formatted item class: {type(formatted_item)}") items[idx] = formatted_item