File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -308,7 +308,7 @@ pub fn get_backtrace_style() -> Option<BacktraceStyle> {
308
308
BacktraceStyle :: Short
309
309
}
310
310
} )
311
- . unwrap_or ( if crate :: sys:: BACKTRACE_DEFAULT {
311
+ . unwrap_or ( if crate :: sys:: FULL_BACKTRACE_DEFAULT {
312
312
BacktraceStyle :: Full
313
313
} else {
314
314
BacktraceStyle :: Off
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ cfg_if::cfg_if! {
80
80
cfg_if:: cfg_if! {
81
81
// Fuchsia components default to full backtrace.
82
82
if #[ cfg( target_os = "fuchsia" ) ] {
83
- pub const BACKTRACE_DEFAULT : bool = true ;
83
+ pub const FULL_BACKTRACE_DEFAULT : bool = true ;
84
84
} else {
85
- pub const BACKTRACE_DEFAULT : bool = false ;
85
+ pub const FULL_BACKTRACE_DEFAULT : bool = false ;
86
86
}
87
87
}
You can’t perform that action at this time.
0 commit comments