Skip to content

Commit

Permalink
Remove superfluous println (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaninime authored Oct 15, 2023
1 parent 7fdb685 commit b11eb32
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion s3/src/request/request_trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@ pub trait Request {
Vec::from(content)
} else if let Command::CompleteMultipartUpload { data, .. } = &self.command() {
let body = data.to_string();
println!("CompleteMultipartUpload: {}", body);
body.as_bytes().to_vec()
} else if let Command::CreateBucket { config } = &self.command() {
if let Some(payload) = config.location_constraint_payload() {
Expand Down

0 comments on commit b11eb32

Please sign in to comment.