switch the seed, database path, and plan path prints to println instead of log::info

This commit is contained in:
alpaylan 2024-12-25 03:04:57 -05:00
parent 49b235cc92
commit 28ae691bf7

View file

@ -126,9 +126,9 @@ fn main() {
std::fs::rename(&old_plan_path, &plan_path).unwrap();
}
// Print the seed, the locations of the database and the plan file at the end again for easily accessing them.
log::info!("database path: {:?}", db_path);
log::info!("simulator plan path: {:?}", plan_path);
log::info!("seed: {}", seed);
println!("database path: {:?}", db_path);
println!("simulator plan path: {:?}", plan_path);
println!("seed: {}", seed);
}
fn run_simulation(