diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 792b45a..9117674 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,7 +41,17 @@ fn main() { match run() { Ok(_) => (), Err(e) => { - eprintln!("error: {}", e); + // format!("{}", e) + // .lines() + // .for_each(|l| eprintln!("error: {}", e)); + // eprintln!(); + + // let errors = *e; + // errors.for_each(|e| eprintln!("error: {}", e)); + + e + .into_iter() + .for_each(|e| eprintln!("error: {:#}", e)); process::exit(exitcode::SOFTWARE); }, |