Feature #8661
closedAdd option to print backtrace in reverse order (stack frames first and error last)
Description
Currently, the way ruby prints backtrace is that the error comes first and then the stack frames, like this:
Main Error Message
stack frame 1
stack frame 2
stack frame 3
.....
This is perfectly fine provided:
- Backtraces are short, and fits in terminal, hence, there is no need to scroll.
- You read it from top to bottom.
But, I am a rails developer where
- Backtraces are HUGE, therefore seldom fit in terminal, which means that a LOT of scrolling is needed every time I get an error.
- In terminal, I tend to read backtraces from bottom to top, especially when tailing (tail -f) production logs.
- I practice test-driven development, and spend most of my time scrolling to read backtraces, and ended up buying a larger display.
Proposed Solution:
Please add a way to configure backtraces to be printed in reverse order so that if I am reading from the bottom, say from the terminal, I can get to the main error message without scrolling, like this:
stack frame 3
stack frame 2
stack frame 1
Main Error Message
.....
This would save a lot of time because when the error message is printed at the bottom, there would be no need to scroll to read it. I am not sure if this can be done today. I tried overriding Exception#backtrace
, but it caused a stack level too deep and illegal hardware instruction error.
Attached is a comparison of how a backtrace currently looks like and how I want the option to make it look.
Files
Updated by nobu (Nobuyoshi Nakada) about 8 years ago
- Description updated (diff)
Updated by Eregon (Benoit Daloze) almost 8 years ago
- Assignee set to matz (Yukihiro Matsumoto)
Updated by ko1 (Koichi Sasada) almost 8 years ago
- Status changed from Closed to Assigned
Updated by mame (Yusuke Endoh) about 5 years ago
- Related to Feature #16684: Use the word "to" instead of "from" in backtrace added
Updated by mame (Yusuke Endoh) almost 5 years ago
- Status changed from Closed to Open
Updated by sawa (Tsuyoshi Sawada) almost 5 years ago
- Subject changed from Add option to print backstrace in reverse order(stack frames first & error last) to Add option to print backtrace in reverse order (stack frames first and error last)
- Description updated (diff)
Updated by duerst (Martin Dürst) almost 5 years ago
- Status changed from Closed to Assigned
Updated by mame (Yusuke Endoh) almost 5 years ago
- Status changed from Assigned to Closed
Updated by mame (Yusuke Endoh) over 4 years ago
- Related to Bug #17413: --backtrace-limit: wrong level counter added