Also include the error message when clang-format fails to spawn.
I think this is a dead end, not honestly much point running it on ARM. :)
PiperOrigin-RevId: 525266455
diff --git a/common/token_stream_printer.rs b/common/token_stream_printer.rs
index bd32cc9..d7ef1d5 100644
--- a/common/token_stream_printer.rs
+++ b/common/token_stream_printer.rs
@@ -213,7 +213,7 @@
.stdout(Stdio::piped())
.stderr(Stdio::piped())
.spawn()
- .unwrap_or_else(|_| panic!("Failed to spawn {exe_name} at {exe_path:?}"));
+ .unwrap_or_else(|e| panic!("Failed to spawn {exe_name} at {exe_path:?}: {e}"));
let mut stdin = child.stdin.take().expect("Failed to open {exe_name} stdin");
std::thread::spawn(move || {