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> {
308308 BacktraceStyle :: Short
309309 }
310310 } )
311- . unwrap_or ( if crate :: sys:: BACKTRACE_DEFAULT {
311+ . unwrap_or ( if crate :: sys:: FULL_BACKTRACE_DEFAULT {
312312 BacktraceStyle :: Full
313313 } else {
314314 BacktraceStyle :: Off
Original file line number Diff line number Diff line change @@ -80,8 +80,8 @@ cfg_if::cfg_if! {
8080cfg_if:: cfg_if! {
8181 // Fuchsia components default to full backtrace.
8282 if #[ cfg( target_os = "fuchsia" ) ] {
83- pub const BACKTRACE_DEFAULT : bool = true ;
83+ pub const FULL_BACKTRACE_DEFAULT : bool = true ;
8484 } else {
85- pub const BACKTRACE_DEFAULT : bool = false ;
85+ pub const FULL_BACKTRACE_DEFAULT : bool = false ;
8686 }
8787}
You can’t perform that action at this time.
0 commit comments