From 131b3cbe07226735eda624570734d908a6e642a8 Mon Sep 17 00:00:00 2001 From: Carla Kirk-Cohen Date: Mon, 18 Nov 2024 14:30:05 -0500 Subject: [PATCH] sim-cli: use updated log level for sim-lib --- sim-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim-cli/src/main.rs b/sim-cli/src/main.rs index e3bcc94..d2f1e45 100644 --- a/sim-cli/src/main.rs +++ b/sim-cli/src/main.rs @@ -91,7 +91,7 @@ async fn main() -> anyhow::Result<()> { SimpleLogger::new() .with_level(LevelFilter::Warn) - .with_module_level("sim_lib", cli.log_level) + .with_module_level("simln_lib", cli.log_level) .with_module_level("sim_cli", cli.log_level) .init() .unwrap();