Skip to content

Commit

Permalink
Log the DB "flavour" on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
rdaum committed Dec 1, 2024
1 parent ee4407d commit 774944e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/daemon/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,10 @@ fn main() -> Result<(), Report> {
}
};

info!("Daemon starting...");
info!(
"Daemon starting. Using {:?} database at {:?}",
args.db_flavour, args.db
);
let (database, freshly_made) = match args.db_flavour {
DatabaseFlavour::WiredTiger => {
let db_source_builder = WiredTigerDatabaseBuilder::new().with_path(args.db.clone());
Expand Down

0 comments on commit 774944e

Please sign in to comment.