Project

General

Profile

ActionsLike0

Feature #8661

closed

Add option to print backtrace in reverse order (stack frames first and error last)

Added by gary4gar (Gaurish Sharma) over 11 years ago. Updated over 3 years ago.

Status:
Closed
Target version:
-
[ruby-core:56096]

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:

  1. Backtraces are short, and fits in terminal, hence, there is no need to scroll.
  2. You read it from top to bottom.

But, I am a rails developer where

  1. Backtraces are HUGE, therefore seldom fit in terminal, which means that a LOT of scrolling is needed every time I get an error.
  2. In terminal, I tend to read backtraces from bottom to top, especially when tailing (tail -f) production logs.
  3. 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

current.log (5.13 KB) current.log here is currently backtraces are printed gary4gar (Gaurish Sharma), 07/21/2013 05:20 AM
proposed.log (4.9 KB) proposed.log here is how I wish they could printed, so its easier read in terminal gary4gar (Gaurish Sharma), 07/21/2013 05:20 AM

Related issues 2 (1 open1 closed)

Related to Ruby - Feature #16684: Use the word "to" instead of "from" in backtraceOpenActions
Related to Ruby - Bug #17413: --backtrace-limit: wrong level counterClosedActions

Updated by nobu (Nobuyoshi Nakada) about 8 years ago

  • Description updated (diff)
#5

Updated by nobu (Nobuyoshi Nakada) about 8 years ago

  • Status changed from Open to Closed

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
#10

Updated by naruse (Yui NARUSE) almost 8 years ago

  • Status changed from Assigned to Closed
#11

Updated by naruse (Yui NARUSE) almost 8 years ago

  • Status changed from Closed to Assigned
#12

Updated by nobu (Nobuyoshi Nakada) almost 8 years ago

  • Status changed from Assigned to Closed
#23

Updated by mame (Yusuke Endoh) about 5 years ago

  • Related to Feature #16684: Use the word "to" instead of "from" in backtrace added
#29

Updated by mame (Yusuke Endoh) almost 5 years ago

  • Status changed from Closed to Open
#31

Updated by mame (Yusuke Endoh) almost 5 years ago

  • Status changed from Open to Closed

Updated by mame (Yusuke Endoh) almost 5 years ago

  • Status changed from Closed to Open
#34

Updated by nobu (Nobuyoshi Nakada) almost 5 years ago

  • Status changed from Open to Closed
#35

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
#46

Updated by mame (Yusuke Endoh) over 4 years ago

  • Related to Bug #17413: --backtrace-limit: wrong level counter added
#47

Updated by hsbt (Hiroshi SHIBATA) over 3 years ago

  • Project changed from 14 to Ruby
ActionsLike0

Also available in: Atom PDF