Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions crates/rattler_networking/src/s3_middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ use aws_config::BehaviorVersion;
use aws_sdk_s3::presigning::PresigningConfig;
use reqwest::{Request, Response};
use reqwest_middleware::{Middleware, Next, Result as MiddlewareResult};
use tracing::info;
use url::Url;

use crate::{Authentication, AuthenticationStorage};
Expand Down Expand Up @@ -45,7 +44,7 @@ pub struct S3Middleware {
impl S3Middleware {
/// Create a new S3 middleware.
pub fn new(config: HashMap<String, S3Config>, auth_storage: AuthenticationStorage) -> Self {
info!("Creating S3 middleware using {:?}", config);
tracing::trace!("Creating S3 middleware using {:?}", config);
Self {
s3: S3::new(config, auth_storage),
}
Expand Down