make upload file from path log a debug log (#1468)

This commit is contained in:
Shuchang Zheng
2025-01-02 10:09:23 -08:00
committed by GitHub
parent 564692727b
commit 3835f3ce69

View File

@@ -71,7 +71,7 @@ class AsyncAWSClient:
try:
parsed_uri = S3Uri(uri)
await client.upload_file(file_path, parsed_uri.bucket, parsed_uri.key)
LOG.info("Upload file from path success", uri=uri)
LOG.debug("Upload file from path success", uri=uri)
except Exception:
LOG.exception("S3 upload failed.", uri=uri)