1
Fork 0

feat: Improve error reporting

This commit is contained in:
Lucas Schwiderski 2022-04-26 22:12:29 +02:00
parent ac4a0a9942
commit e2a8d4f951
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -53,7 +53,7 @@ fn main() -> Result<()> {
match res {
Ok(_) => println!("Fixed: {}", name.to_string_lossy()),
Err(err) => eprintln!("Failed: {}. Error: {}", name.to_string_lossy(), err),
Err(err) => eprintln!("Failed: {}. Error: {:#}", name.to_string_lossy(), err),
}
}