Add log before opening database

(cherry picked from commit b557b3170e)
This commit is contained in:
Michael Vines
2020-04-03 12:51:44 -07:00
parent 0c7689206c
commit 33c19130b5

View File

@ -180,6 +180,7 @@ impl Blockstore {
// Open the database // Open the database
let mut measure = Measure::start("open"); let mut measure = Measure::start("open");
info!("Opening database at {:?}", blockstore_path);
let db = Database::open(&blockstore_path)?; let db = Database::open(&blockstore_path)?;
// Create the metadata column family // Create the metadata column family