diff --git a/stages/publish/create_repo_map_default.py b/stages/publish/create_repo_map_default.py index 75bdea0a785fe79386dc4e26c5413687c7570bbd..435164505df2111d497f005b5484f3960d99c835 100644 --- a/stages/publish/create_repo_map_default.py +++ b/stages/publish/create_repo_map_default.py @@ -26,7 +26,6 @@ def get_repomap(object_name, bucket="ironbank-pipeline-artifacts"): print(object_name) try: response = s3_client.download_file(bucket, object_name, "repo_map.json") - logging.debug(f"S3 download response code: {response.status_code}") except ClientError as e: logging.error(e) print("Existing repo_map.json not found, creating new repo_map.json") diff --git a/stages/publish/create_repo_map_other.py b/stages/publish/create_repo_map_other.py index accbf98bb4733de3182033834126b40f43b167f6..ca482e1ba261b9168aae1822ed59298c681b71ee 100644 --- a/stages/publish/create_repo_map_other.py +++ b/stages/publish/create_repo_map_other.py @@ -26,7 +26,6 @@ def get_repomap(object_name, bucket="ironbank-pipeline-artifacts"): print(object_name) try: response = s3_client.download_file(bucket, object_name, "repo_map.json") - logging.debug(f"S3 download response code: {response.status_code}") except ClientError as e: logging.error(e) print("Existing repo_map.json not found, creating new repo_map.json") diff --git a/stages/publish/s3_upload.py b/stages/publish/s3_upload.py index 6ac95ee9dcb699b1f9f4449f875d7ff6dd7e9285..fb83164487539617c60fa7d79a02fb1a0fe148d4 100644 --- a/stages/publish/s3_upload.py +++ b/stages/publish/s3_upload.py @@ -61,7 +61,6 @@ def upload_file(file_name, bucket, object_name=None): ) try: response = s3_client.upload_file(file_name, bucket, object_name, extra_args) - logging.debug(f"S3 upload response code: {response.status_code}") except ClientError as e: logging.error(e) return False