Skip to content

Commit f9909eb

Browse files
committed
chore: print sqlite version
1 parent 4eb22d8 commit f9909eb

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • standalone/src-tauri/src

standalone/src-tauri/src/db.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ impl DatabaseHandle {
6565
let db_path = self.db_path(app_handle)?;
6666
let conn = Connection::open(db_path)?;
6767

68+
log::info!("using SQLite version: {}", rusqlite::version());
69+
6870
let extension_path = resolve_extension_path(app_handle);
6971
if extension_path.is_none() {
7072
// fail early if no extension found

0 commit comments

Comments
 (0)