feat: Improve error reporting
This commit is contained in:
parent
ac4a0a9942
commit
e2a8d4f951
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ fn main() -> Result<()> {
|
||||||
|
|
||||||
match res {
|
match res {
|
||||||
Ok(_) => println!("Fixed: {}", name.to_string_lossy()),
|
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),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue