updated logging
This commit is contained in:
parent
218871e060
commit
f67292fd90
1 changed files with 2 additions and 2 deletions
|
@ -62,6 +62,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
|
||||||
let primary_note_lines: Vec<&str> = primary_note.content.lines().collect();
|
let primary_note_lines: Vec<&str> = primary_note.content.lines().collect();
|
||||||
|
|
||||||
|
debug!("input: {:#?}", primary_note_lines);
|
||||||
|
|
||||||
let mut unchecked: Vec<String> = vec![];
|
let mut unchecked: Vec<String> = vec![];
|
||||||
let mut checked: Vec<String> = vec![];
|
let mut checked: Vec<String> = vec![];
|
||||||
|
|
||||||
|
@ -112,8 +114,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
||||||
|
|
||||||
let logging_note_lines: Vec<&str> = logging_note.content.lines().collect();
|
let logging_note_lines: Vec<&str> = logging_note.content.lines().collect();
|
||||||
|
|
||||||
debug!("input: {:#?}", logging_note_lines);
|
|
||||||
|
|
||||||
for line in logging_note_lines {
|
for line in logging_note_lines {
|
||||||
if line.starts_with("*Last Updated") {
|
if line.starts_with("*Last Updated") {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue