We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db75b6a commit 1f1ca87Copy full SHA for 1f1ca87
src/libstd/backtrace.rs
@@ -162,8 +162,8 @@ enum BytesOrWide {
162
impl fmt::Debug for Backtrace {
163
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
164
let mut capture = match &self.inner {
165
- Inner::Unsupported => return fmt.write_str("unsupported backtrace"),
166
- Inner::Disabled => return fmt.write_str("disabled backtrace"),
+ Inner::Unsupported => return fmt.write_str("<unsupported>"),
+ Inner::Disabled => return fmt.write_str("<disabled>"),
167
Inner::Captured(c) => c.lock().unwrap(),
168
};
169
capture.resolve();
0 commit comments