diff --git a/src/main.rs b/src/main.rs index cec6cf1..6ec04df 100644 --- a/src/main.rs +++ b/src/main.rs @@ -96,19 +96,18 @@ fn sync(snac: &Snac, nex: &Nex) -> Result { (post.published, post.updated), )?; use nex::response::change::Change; - let f = ""; //response.file.to_string_lossy(); match response.change { Change::Created => { r.created += 1; - println!("\t\t\tcreate new post file `{f}`.") + println!("\t\t\tcreate new post file.") } Change::Ignored => { r.ignored += 1; - println!("\t\t\tpost file `{f}` is up to date.") + println!("\t\t\tpost file is up to date.") } Change::Updated => { r.updated += 1; - println!("\t\t\tpost file `{f}` update with new content.") + println!("\t\t\tpost file update with new content.") } } if let Some(ref mut k) = keep