Project

General

Profile

Actions

Feature #9805

closed

Backtrace for SystemStackError

Added by sawa (Tsuyoshi Sawada) almost 10 years ago. Updated almost 10 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:62403]

Description

The following code:

def a; a end
begin
  a
rescue => e
puts  e.backtrace.inspect
end

only returns a single line of backtrace like:

/tmp/scratch:3:in `a'

but this is not helpful when debugging. It would be better if some limit be set by configuration, and the backtrace is displayed as far as possible within the limit, so the case above would become:

/tmp/scratch:3:in `a'
/tmp/scratch:3:in `a'
/tmp/scratch:3:in `a'
... # repeated as many times as the limit set
/tmp/scratch:3:in `a'

I believe the same question was asked here: https://bugs.ruby-lang.org/issues/6216, but the code posted by the poster was unnecessarily long and complex that the intent was not clear to many people.


Related issues 1 (0 open1 closed)

Is duplicate of Ruby master - Feature #6216: SystemStackError backtraces should not be reduced to one lineClosedko1 (Koichi Sasada)03/28/2012Actions
Actions

Also available in: Atom PDF

Like0
Like0Like0