Skip to content

Commit

Permalink
Print lower level causes on error
Browse files Browse the repository at this point in the history
Closes #45.
  • Loading branch information
YS-L committed Jan 8, 2024
1 parent cb1444a commit 3662a9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ fn run_csvlens() -> Result<Option<String>> {
fn main() {
match run_csvlens() {
Err(e) => {
println!("{e}");
println!("{e:?}");
std::process::exit(1);
}
Ok(Some(selection)) => {
Expand Down

0 comments on commit 3662a9f

Please sign in to comment.