Remove logs

This commit is contained in:
Andrej Mihajlov
2025-05-29 18:21:29 +02:00
parent 6391b7ed3a
commit e4e349bea8
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -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)
-1
View File
@@ -58,7 +58,6 @@ pub async fn check_files_closed(file_paths: &[&Path]) -> io::Result<bool> {
// 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 {