From f67292fd9023fef8499da69a2c85a3e8447306c9 Mon Sep 17 00:00:00 2001 From: Nickiel12 Date: Sun, 3 Dec 2023 15:53:32 -0800 Subject: [PATCH] updated logging --- chrono_track/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrono_track/src/main.rs b/chrono_track/src/main.rs index e7e6448..9eaf2ab 100644 --- a/chrono_track/src/main.rs +++ b/chrono_track/src/main.rs @@ -62,6 +62,8 @@ fn main() -> Result<(), Box> { let primary_note_lines: Vec<&str> = primary_note.content.lines().collect(); + debug!("input: {:#?}", primary_note_lines); + let mut unchecked: Vec = vec![]; let mut checked: Vec = vec![]; @@ -112,8 +114,6 @@ fn main() -> Result<(), Box> { let logging_note_lines: Vec<&str> = logging_note.content.lines().collect(); - debug!("input: {:#?}", logging_note_lines); - for line in logging_note_lines { if line.starts_with("*Last Updated") { continue;