aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/resources/s3.py
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-08-03 20:32:45 +0100
committerMatthew Lemon <y@yulqen.org>2024-08-03 20:32:45 +0100
commitdb58fcb096923b162d43a9cc12090f5546bce450 (patch)
treedeb1b4b4c80f14866f5892fdce9e238143f260ad /pyblackbird_cc/resources/s3.py
parenta4de4737f0e97aa005281f9ac79482149a1d5bb7 (diff)
Remove Client created log line that is unnecessary.
Diffstat (limited to '')
-rw-r--r--pyblackbird_cc/resources/s3.py1
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",