Skip to content

Commit

Permalink
fix logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
rpmcginty committed Jun 21, 2024
1 parent e484bce commit 7565d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aibs_informatics_aws_utils/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def process_transfer_requests(
**kwargs,
)
transfer_responses.append(S3TransferResponse(request, False))
self.logger.info(f"Processed s3 transfer request {i + 1} of {len(transfer_requests)}")
logger.info(f"Processed s3 transfer request {i + 1} of {len(transfer_requests)}")
except Exception as e:
msg = f"Failed to copy {request.source_path} to {request.destination_path}: {e}"
if not suppress_errors:
Expand Down

0 comments on commit 7565d71

Please sign in to comment.