We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb22d8 commit f9909ebCopy full SHA for f9909eb
1 file changed
standalone/src-tauri/src/db.rs
@@ -65,6 +65,8 @@ impl DatabaseHandle {
65
let db_path = self.db_path(app_handle)?;
66
let conn = Connection::open(db_path)?;
67
68
+ log::info!("using SQLite version: {}", rusqlite::version());
69
+
70
let extension_path = resolve_extension_path(app_handle);
71
if extension_path.is_none() {
72
// fail early if no extension found
0 commit comments