diff options
Diffstat (limited to 'components/constellation/constellation.rs')
-rw-r--r-- | components/constellation/constellation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/constellation/constellation.rs b/components/constellation/constellation.rs index 291ed48dd1b..fcf174cc8f6 100644 --- a/components/constellation/constellation.rs +++ b/components/constellation/constellation.rs @@ -1090,7 +1090,7 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF> if opts::get().hard_fail { // It's quite difficult to make Servo exit cleanly if some threads have failed. // Hard fail exists for test runners so we crash and that's good enough. - println!("Pipeline failed in hard-fail mode. Crashing!\n{}\n{}", reason, backtrace.unwrap_or_default()); + println!("Pipeline failed in hard-fail mode. Crashing!"); process::exit(1); } |