diff --git a/Cargo.lock b/Cargo.lock index 8af968be4..cbfe78d9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2351,13 +2351,11 @@ dependencies = [ "clap", "dirs 6.0.0", "either", - "env_logger 0.11.7", "garde", "hex", "indexmap 2.11.1", "itertools 0.14.0", "json5", - "log", "notify", "parking_lot", "rand 0.9.2", diff --git a/simulator/Cargo.toml b/simulator/Cargo.toml index a5d4daba8..09401f2cc 100644 --- a/simulator/Cargo.toml +++ b/simulator/Cargo.toml @@ -18,8 +18,6 @@ path = "main.rs" turso_core = { workspace = true, features = ["simulator"]} rand = { workspace = true } rand_chacha = { workspace = true } -log = "0.4.20" -env_logger = { workspace = true } regex = { workspace = true } regex-syntax = { workspace = true, default-features = false, features = [ "unicode", diff --git a/simulator/generation/plan.rs b/simulator/generation/plan.rs index 1f164a01d..3c07d73e3 100644 --- a/simulator/generation/plan.rs +++ b/simulator/generation/plan.rs @@ -21,6 +21,7 @@ use sql_generation::{ table::SimValue, }, }; +use tracing::error; use turso_core::{Connection, Result, StepResult}; use crate::{ @@ -121,7 +122,7 @@ impl InteractionPlan { let _ = plan[j].split_off(k); break; } - log::error!("Comparing '{}' with '{}'", interactions[i], plan[j][k]); + error!("Comparing '{}' with '{}'", interactions[i], plan[j][k]); if interactions[i].contains(plan[j][k].to_string().as_str()) { i += 1; k += 1;