diff --git a/sqlx-pool-guard/src/lib.rs b/sqlx-pool-guard/src/lib.rs index 8b120ee261..62838ac20f 100644 --- a/sqlx-pool-guard/src/lib.rs +++ b/sqlx-pool-guard/src/lib.rs @@ -128,8 +128,6 @@ mod tests { let temp_dir = tempfile::tempdir().unwrap(); let database_path = temp_dir.path().join("storage.sqlite"); - println!("Database path: {}", database_path.display()); - let opts = sqlx::sqlite::SqliteConnectOptions::new() .journal_mode(sqlx::sqlite::SqliteJournalMode::Wal) .synchronous(SqliteSynchronous::Normal) diff --git a/sqlx-pool-guard/src/windows.rs b/sqlx-pool-guard/src/windows.rs index 9b04414804..606b5863d5 100644 --- a/sqlx-pool-guard/src/windows.rs +++ b/sqlx-pool-guard/src/windows.rs @@ -58,7 +58,6 @@ pub async fn check_files_closed(file_paths: &[&Path]) -> io::Result { // Buffer is too small, resize memory and retry again. if status == STATUS_INFO_LENGTH_MISMATCH { log::trace!("Buffer is too small ({reserved_memory}), resizing to {return_len}"); - println!("Buffer is too small ({reserved_memory}), resizing to {return_len}"); reserved_memory = return_len as usize; handle_table_info.reallocate(reserved_memory)?; } else {