Skip to content

Commit

Permalink
server: Make s3 PUT logging less confusing in process_incoming
Browse files Browse the repository at this point in the history
  • Loading branch information
elprans committed Jan 12, 2024
1 parent 2c6386c commit 08ab4a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/process_incoming.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ def put(
ct, _ = mimetypes.guess_type(name)
if ct is not None and "/" in ct:
content_type = ct
logger.info("put %s::%s/%s", bucket, name, target)
logger.info("put s3://%s/%s/%s", bucket.name, target, name)
with ctx as body:
result = bucket.put_object(
Key=str(target / name),
Expand Down

0 comments on commit 08ab4a9

Please sign in to comment.