diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-12 14:37:46 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-12 14:37:46 +0100 |
commit | 7fdaf7aef0c2aa8b38dbc7dac630f6f9baf8f0a4 (patch) | |
tree | c7b212ed0333dfc57bb39370d85060d1d1a103eb /src/api/s3_put.rs | |
parent | 1ec49980ec876ef9395a9ae088f82d86a1a0d9f6 (diff) | |
download | garage-7fdaf7aef0c2aa8b38dbc7dac630f6f9baf8f0a4.tar.gz garage-7fdaf7aef0c2aa8b38dbc7dac630f6f9baf8f0a4.zip |
Fix merkle updater not being notified; improved logging
Diffstat (limited to 'src/api/s3_put.rs')
-rw-r--r-- | src/api/s3_put.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/s3_put.rs b/src/api/s3_put.rs index 2c5e364f..17732ced 100644 --- a/src/api/s3_put.rs +++ b/src/api/s3_put.rs @@ -472,8 +472,8 @@ pub async fn handle_complete_multipart_upload( }; // Check that the list of parts they gave us corresponds to the parts we have here - println!("Expected parts from request: {:?}", body_list_of_parts); - println!("Parts stored in version: {:?}", version.parts_etags.items()); + debug!("Expected parts from request: {:?}", body_list_of_parts); + debug!("Parts stored in version: {:?}", version.parts_etags.items()); let parts = version .parts_etags .items() |