From 5faf069e3373ebec148a8e81e31b696f0fe746a1 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 15 Jul 2020 15:41:49 +0200 Subject: [PATCH] trace test --- src/api/s3_put.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/api/s3_put.rs b/src/api/s3_put.rs index 2ab67884..0926ba89 100644 --- a/src/api/s3_put.rs +++ b/src/api/s3_put.rs @@ -88,11 +88,15 @@ pub async fn handle_put( return Err(Error::Message(format!( "Unable to validate x-amz-content-sha256" ))); + } else { + trace!("Successfully validated x-amz-content-sha256"); } } if let Some(expected_md5) = content_md5 { if expected_md5.trim_matches('"') != md5sum { return Err(Error::Message(format!("Unable to validate content-md5"))); + } else { + trace!("Successfully validated content-md5"); } } @@ -358,11 +362,15 @@ pub async fn handle_put_part( return Err(Error::Message(format!( "Unable to validate x-amz-content-sha256" ))); + } else { + trace!("Successfully validated x-amz-content-sha256"); } } if let Some(expected_md5) = content_md5 { if expected_md5.trim_matches('"') != md5sum { return Err(Error::Message(format!("Unable to validate content-md5"))); + } else { + trace!("Successfully validated content-md5"); } }