diff options
author | Matthew Lemon <y@yulqen.org> | 2024-08-03 20:32:45 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-08-03 20:32:45 +0100 |
commit | db58fcb096923b162d43a9cc12090f5546bce450 (patch) | |
tree | deb1b4b4c80f14866f5892fdce9e238143f260ad /pyblackbird_cc | |
parent | a4de4737f0e97aa005281f9ac79482149a1d5bb7 (diff) |
Remove Client created log line that is unnecessary.
Diffstat (limited to 'pyblackbird_cc')
-rw-r--r-- | pyblackbird_cc/resources/s3.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pyblackbird_cc/resources/s3.py b/pyblackbird_cc/resources/s3.py index d00f19b..da844ae 100644 --- a/pyblackbird_cc/resources/s3.py +++ b/pyblackbird_cc/resources/s3.py @@ -20,7 +20,6 @@ def get_presigned_obj_url(bucket_name, obj_name, expiration=3600) -> str | None: aws_secret_access_key=settings.AWS_SECRET_ACCESS_KEY, region_name=settings.AWS_S3_REGION_NAME, ) - logger.info("Client created", extra={"client": client}) try: response = client.generate_presigned_url( "get_object", |