Add line delimiter between error messages and traces
This commit is contained in:
parent
b311c73c43
commit
7c71e0528f
|
@ -15,10 +15,14 @@ fn kym_handle_errors(info: kym.ErrorInfo) void {
|
||||||
|
|
||||||
var remaining_frames = info.frames.len;
|
var remaining_frames = info.frames.len;
|
||||||
|
|
||||||
while (remaining_frames != 0) {
|
if (remaining_frames != 0) {
|
||||||
remaining_frames -= 1;
|
app.log_fail("stack trace:");
|
||||||
|
|
||||||
app.log_fail(info.frames[remaining_frames].name);
|
while (remaining_frames != 0) {
|
||||||
|
remaining_frames -= 1;
|
||||||
|
|
||||||
|
app.log_fail(info.frames[remaining_frames].name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue