Remove logs
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user