From b4221680e4ba00246f738d4079361cc803509125 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Mon, 21 Apr 2025 19:18:16 -0700 Subject: [PATCH] Print more context for debugging nop-preprocessor --- examples/nop-preprocessor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nop-preprocessor.rs b/examples/nop-preprocessor.rs index bbb82a46..f194991a 100644 --- a/examples/nop-preprocessor.rs +++ b/examples/nop-preprocessor.rs @@ -26,7 +26,7 @@ fn main() { if let Some(sub_args) = matches.subcommand_matches("supports") { handle_supports(&preprocessor, sub_args); } else if let Err(e) = handle_preprocessing(&preprocessor) { - eprintln!("{e}"); + eprintln!("{e:?}"); process::exit(1); } }