From 3ab9006bdc9b1a70a8528f0c6715e79eb0c3531f Mon Sep 17 00:00:00 2001 From: Vladimir Rubin Date: Sat, 3 May 2025 13:59:22 +0300 Subject: [PATCH] chore: remove unnecessary debug --- src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6445fe6..056a590 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -114,13 +114,10 @@ impl Config { .filter(|l| !l.is_empty()) .filter(|l| !l.starts_with('#')) { - trace!("line: {line}"); if line.starts_with('[') && line.contains(']') { current_section = line[1..line.find(']').unwrap()].to_string(); seen_keys.clear(); - trace!("current_section: {current_section}"); } else if let Some((key, value)) = line.split_once('=') { - trace!("key: {key}, value: {value}"); let key_trimmed_string = key.trim().replace('"', ""); let key_trimmed = key_trimmed_string.as_str(); @@ -249,8 +246,6 @@ impl Config { ))); } - debug!("Seen: {:#?}", seen_keys); - Ok(config) } }