Merge pull request #2364 from zed-industries/put-backtrace-on-a-newline-when-reporting-panics
Put backtrace on a new line when reporting panics
This commit is contained in:
commit
f450692e77
1 changed files with 2 additions and 2 deletions
|
@ -336,7 +336,7 @@ fn init_panic_hook(app_version: String) {
|
||||||
let message = match info.location() {
|
let message = match info.location() {
|
||||||
Some(location) => {
|
Some(location) => {
|
||||||
format!(
|
format!(
|
||||||
"thread '{}' panicked at '{}': {}:{}{:?}",
|
"thread '{}' panicked at '{}': {}:{}\n{:?}",
|
||||||
thread,
|
thread,
|
||||||
payload,
|
payload,
|
||||||
location.file(),
|
location.file(),
|
||||||
|
@ -345,7 +345,7 @@ fn init_panic_hook(app_version: String) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
None => format!(
|
None => format!(
|
||||||
"thread '{}' panicked at '{}'{:?}",
|
"thread '{}' panicked at '{}'\n{:?}",
|
||||||
thread, payload, backtrace
|
thread, payload, backtrace
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue