From be4831d7687b59eb4a8f7a2856554f9157cc998d Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Fri, 24 Apr 2020 19:27:27 +0000 Subject: [PATCH] Less verbosity --- src/api/s3_list.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/api/s3_list.rs b/src/api/s3_list.rs index 8b4703df..af160ac2 100644 --- a/src/api/s3_list.rs +++ b/src/api/s3_list.rs @@ -30,7 +30,7 @@ pub async fn handle_list( let mut truncated = true; let mut next_chunk_start = prefix.to_string(); - println!("List request: `{}` {} `{}`", delimiter, max_keys, prefix); + debug!("List request: `{}` {} `{}`", delimiter, max_keys, prefix); while result.len() < max_keys && truncated { let objects = garage @@ -70,7 +70,6 @@ pub async fn handle_list( size: 0, }, }; - println!("Entry: {} {:?}", delimited_key, new_info); result.insert(delimited_key, new_info); } } @@ -106,7 +105,6 @@ pub async fn handle_list( writeln!(&mut xml, "\t").unwrap(); } writeln!(&mut xml, "").unwrap(); - println!("{}", xml); Ok(Response::new(Box::new(BytesBody::from(xml.into_bytes())))) }