From 8883c2ded7cf199aa1b3986780179e48e78f8446 Mon Sep 17 00:00:00 2001 From: Daniel Carl Jones Date: Mon, 10 Apr 2023 09:07:48 +0100 Subject: [PATCH] Lower log level for S3CrtClient metareq response err from warn to debug Signed-off-by: Daniel Carl Jones --- mountpoint-s3-client/src/s3_crt_client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mountpoint-s3-client/src/s3_crt_client.rs b/mountpoint-s3-client/src/s3_crt_client.rs index b084441ff..f3b96cbc8 100644 --- a/mountpoint-s3-client/src/s3_crt_client.rs +++ b/mountpoint-s3-client/src/s3_crt_client.rs @@ -236,7 +236,7 @@ impl S3CrtClient { metrics::counter!("s3.meta_requests", 1, "op" => op); if request_result.is_err() { - warn!( + debug!( request_id = request_id.as_deref().unwrap_or("unknown"), duration_us = start_time.elapsed().as_micros(), ?request_result,