sqlite3: Switch error to trace-level logging

...it's pretty pointless to spam the logs for this.
This commit is contained in:
Pekka Enberg 2025-05-14 14:17:33 +03:00
parent 7458848a56
commit cac464b49a

View file

@ -124,7 +124,7 @@ pub unsafe extern "C" fn sqlite3_open(
SQLITE_OK
}
Err(e) => {
log::error!("error opening database {:?}", e);
log::trace!("error opening database {}: {:?}", filename, e);
SQLITE_CANTOPEN
}
}