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 375cbff commit 79c60a6Copy full SHA for 79c60a6
packages/common/universaldb/src/driver/rocksdb/database.rs
@@ -24,6 +24,8 @@ pub struct RocksDbDatabaseDriver {
24
25
impl RocksDbDatabaseDriver {
26
pub async fn new(db_path: PathBuf) -> Result<Self> {
27
+ tracing::info!(?db_path, "starting file system driver");
28
+
29
// Create directory if it doesn't exist
30
std::fs::create_dir_all(&db_path).context("failed to create database directory")?;
31
0 commit comments