Skip to content

Commit

Permalink
modify error output
Browse files Browse the repository at this point in the history
  • Loading branch information
Deborah Mahn committed Sep 28, 2023
1 parent b37695d commit 6849514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/lnk2bodyfile/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn main() -> Result<()> {
for filename in cli.lnk_files.iter() {
let lnkfile = match LnkFile::try_from(filename) {
Ok(file) => file,
Err(e) => {println!("{:#?}", e); continue;},
Err(why) => {log::error!("{why}"); continue;},
};
lnkfile.print_bodyfile();
}
Expand Down

0 comments on commit 6849514

Please sign in to comment.