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;