We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6aaff7e commit 2bd43e9Copy full SHA for 2bd43e9
object_store/src/client/retry.rs
@@ -24,7 +24,7 @@ use reqwest::header::LOCATION;
24
use reqwest::{Client, Request, Response, StatusCode};
25
use std::error::Error as StdError;
26
use std::time::{Duration, Instant};
27
-use tracing::info;
+use tracing::{debug, info};
28
29
/// Retry request error
30
#[derive(Debug, thiserror::Error)]
@@ -296,7 +296,7 @@ impl RetryableRequest {
296
})?;
297
298
let response_body = String::from_utf8_lossy(&bytes);
299
- info!("Checking for error in response_body: {}", response_body);
+ debug!("Checking for error in response_body: {}", response_body);
300
301
if !body_contains_error(&response_body) {
302
// Success response and no error, clone and return response
0 commit comments