From dedaea205f455fd910e7e1f702a89f87283f8abf Mon Sep 17 00:00:00 2001 From: ardocrat Date: Tue, 19 May 2026 21:50:37 +0300 Subject: [PATCH] lmdb: info migration log --- store/src/lmdb.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/store/src/lmdb.rs b/store/src/lmdb.rs index 2f0452e4..ee4c977f 100644 --- a/store/src/lmdb.rs +++ b/store/src/lmdb.rs @@ -278,7 +278,7 @@ impl Store { from_name: Option<&str>, from_path: &Path, ) -> Result<(), Error> { - debug!("Migrating DB {:?}", from_path); + info!("Migrating DB {:?}, please wait...", from_path); let from_env = unsafe { let mut options = EnvOpenOptions::new().read_txn_without_tls(); let env_options = options.map_size(self.alloc_chunk_size).max_dbs(24); @@ -318,7 +318,7 @@ impl Store { } } write_to.commit()?; - debug!("Migrated {} records from {:?}", count, from_path); + info!("Migrated {} records from {:?}", count, from_path); Ok(()) }