rm unuse log

This commit is contained in:
weisd
2024-11-21 17:35:13 +08:00
parent 1bfba1e913
commit 237690b876
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -363,7 +363,6 @@ impl S3 for FS {
..Default::default()
};
debug!("get_object response {:?}", output);
Ok(S3Response::new(output))
}
@@ -406,7 +405,6 @@ impl S3 for FS {
.get_object_info(&bucket, &key, &ObjectOptions::default())
.await
.map_err(to_s3_error)?;
debug!("info {:?}", info);
let content_type = {
if let Some(content_type) = info.content_type {
@@ -854,7 +852,6 @@ impl S3 for FS {
#[tracing::instrument(level = "debug", skip(self))]
async fn put_bucket_tagging(&self, req: S3Request<PutBucketTaggingInput>) -> S3Result<S3Response<PutBucketTaggingOutput>> {
let PutBucketTaggingInput { bucket, tagging, .. } = req.input;
log::debug!("bucket: {bucket}, tagging: {tagging:?}");
let layer = new_object_layer_fn();
let lock = layer.read().await;
+1 -1
View File
@@ -7,7 +7,7 @@ mkdir -p ./target/volume/test{0..4}
if [ -z "$RUST_LOG" ]; then
export RUST_LOG="rustfs=debug,ecstore=debug,s3s=debug,reader=debug,router=debug"
export RUST_LOG="rustfs=debug,ecstore=debug,s3s=info,reader=debug,router=debug"
fi
# export RUSTFS_ERASURE_SET_DRIVE_COUNT=5