Skip to content

Commit 79c60a6

Browse files
committed
chore(udb): log fs driver path
1 parent 375cbff commit 79c60a6

File tree

1 file changed

+2
-0
lines changed
  • packages/common/universaldb/src/driver/rocksdb

1 file changed

+2
-0
lines changed

packages/common/universaldb/src/driver/rocksdb/database.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ pub struct RocksDbDatabaseDriver {
2424

2525
impl RocksDbDatabaseDriver {
2626
pub async fn new(db_path: PathBuf) -> Result<Self> {
27+
tracing::info!(?db_path, "starting file system driver");
28+
2729
// Create directory if it doesn't exist
2830
std::fs::create_dir_all(&db_path).context("failed to create database directory")?;
2931

0 commit comments

Comments
 (0)