From 551297f46bf3dd46020b64a6e850c4d5f0f57bfb Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Thu, 17 Jul 2025 14:13:04 -0500 Subject: [PATCH] Remove some debug prints --- src/config.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index a61ac4b..d40096c 100644 --- a/src/config.rs +++ b/src/config.rs @@ -98,7 +98,6 @@ fn read_conf_str(text: &str) -> Result { .project_path(path.clone()); whole.project_overrides.push(part_cfg); } - println!(" ->> lconf - keys {:?}", cfg_table.keys().collect::>()); Ok(whole) } @@ -225,8 +224,6 @@ mod tests { let fx_sample_config_string = include_str!("../test_data/sample_config.toml"); let fx_expected_struct = gen_expected_struct(); let conf = read_conf_str(fx_sample_config_string)?; - println!(" ->> Test conf: {:?}", conf); - println!(" ->> Ref conf: {:?}", fx_expected_struct); assert_eq!(conf, fx_expected_struct); Ok(())