diff --git a/ecstore/src/sets.rs b/ecstore/src/sets.rs index 8234dacd9..be1424d57 100644 --- a/ecstore/src/sets.rs +++ b/ecstore/src/sets.rs @@ -20,10 +20,10 @@ use crate::{ use futures::future::join_all; use http::HeaderMap; use tokio::sync::RwLock; -use tokio::sync::Semaphore; use tokio::time::Duration; use tokio_util::sync::CancellationToken; -use tracing::{info, warn}; +use tracing::info; +use tracing::warn; use uuid::Uuid; #[derive(Debug, Clone)] diff --git a/rustfs/src/main.rs b/rustfs/src/main.rs index 0b8c1c0c4..47fa52171 100644 --- a/rustfs/src/main.rs +++ b/rustfs/src/main.rs @@ -19,7 +19,7 @@ use s3s::{auth::SimpleAuth, service::S3ServiceBuilder}; use service::hybrid; use std::{io::IsTerminal, net::SocketAddr, str::FromStr}; use tokio::net::TcpListener; -use tracing::{debug, info, warn}; +use tracing::{debug, info}; use tracing_error::ErrorLayer; use tracing_subscriber::{fmt, layer::SubscriberExt, util::SubscriberInitExt};