mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
switch the seed, database path, and plan path prints to println instead of log::info
This commit is contained in:
parent
49b235cc92
commit
28ae691bf7
1 changed files with 3 additions and 3 deletions
|
@ -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(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue