diff --git a/src/pooled.rs b/src/pooled.rs index 3f4a0bea2..484b17329 100644 --- a/src/pooled.rs +++ b/src/pooled.rs @@ -241,11 +241,17 @@ impl Builder { #[cfg(not(feature = "tracing-log"))] { - info!("Starting a {} pool with {} connections.", family, self.connection_limit); + info!( + "Starting a {} pool with up to {} connections.", + family, self.connection_limit + ); } #[cfg(feature = "tracing-log")] { - tracing::info!("Starting a {} pool with {} connections.", family, self.connection_limit); + info!( + "Starting a {} pool with up to {} connections.", + family, self.connection_limit + ); } let inner = Pool::builder()