Rollup merge of #128499 - Konippi:refactor-backtrace-formatting, r=tgross35
chore: refactor backtrace formatting Replace `write_str()` with the `writeln!()` macro, consolidating multiple write operations.
This commit is contained in:
commit
e6b6d04b06
1 changed files with 2 additions and 7 deletions
|
@ -500,13 +500,8 @@ where
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.show_backtrace {
|
if self.show_backtrace {
|
||||||
let backtrace = self.backtrace();
|
if let Some(backtrace) = self.backtrace() {
|
||||||
|
write!(f, "\n\nStack backtrace:\n{}", backtrace.to_string().trim_end())?;
|
||||||
if let Some(backtrace) = backtrace {
|
|
||||||
let backtrace = backtrace.to_string();
|
|
||||||
|
|
||||||
f.write_str("\n\nStack backtrace:\n")?;
|
|
||||||
f.write_str(backtrace.trim_end())?;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue