up vote 18 down vote favorite
4
share [g+] share [fb]

When I get exceptions, it is often from deep within the call stack. When this happens, more often than not, the actual offending line of code is hidden from me:

tmp.rb:7:in `t': undefined method `bar' for nil:NilClass (NoMethodError)
        from tmp.rb:10:in `s'
        from tmp.rb:13:in `r'
        from tmp.rb:16:in `q'
        from tmp.rb:19:in `p'
        from tmp.rb:22:in `o'
        from tmp.rb:25:in `n'
        from tmp.rb:28:in `m'
        from tmp.rb:31:in `l'
         ... 8 levels...
        from tmp.rb:58:in `c'
        from tmp.rb:61:in `b'
        from tmp.rb:64:in `a'
        from tmp.rb:67

That "... 8 levels..." truncation is causing me a great deal of trouble. I'm not having much success googling for this one: How do I tell ruby that I want dumps to include the full stack?

link|improve this question

50% accept rate
2  
Is there a way to do this from the command line instead? – Andrew Grimm May 6 '09 at 2:21
feedback

5 Answers

up vote 24 down vote accepted

Exception#backtrace has the entire stack in it:

def do_division_by_zero; 5 / 0; end
begin
  do_division_by_zero
rescue => exception
  puts exception.backtrace
end

(Taken from Peter Cooper's Ruby Inside blog)

link|improve this answer
2  
I'd reraise the exception, at least for the sake of the examples completness. – reto Jul 13 '09 at 5:59
feedback

This produces the error description and nice clean, indented stacktrace:

begin               
 # Some exception throwing code
rescue => e
  puts "Error during processing: #{$!}"
  puts "Backtrace:\n\t#{e.backtrace.join("\n\t")}"
end
link|improve this answer
feedback

You could also do this if you'd like a simple one-liner:

puts caller
link|improve this answer
1  
Awesome trick. Thanks a lot. I didn't know that raise can be used with no arguments. Neither I knew that rescue will be treated correctly as one-liner. I also totally ignore those global vars like $!. – Dmytrii Nagirniak Oct 31 '11 at 0:47
1  
no need to raise/rescue, you can just use Kernel#caller, like so: puts "this line was reached by #{caller.join("\n")}" – Stephen C Jan 24 at 0:24
Ah, I found out about that shortly after posting this answer and forgot to update it. Thanks – Charlie Somerville Jan 24 at 10:53
feedback

IRB has a setting for this awful "feature", which you can customize.

Create a file called ~/.irbrc that includes the following line:

IRB.conf[:BACK_TRACE_LIMIT] = 100

This will allow you to see 100 stack frames in irb, at least. I haven't been able to find an equivalent setting for the non-interactive runtime.

Detailed information about IRB customization can be found in the Pickaxe book.

link|improve this answer
feedback

I was getting these errors when trying to load my test environment (via rake test or autotest) and the IRB suggestions didn't help. I ended up wrapping my entire test/test_helper.rb in a begin/rescue block and that fixed things up.

begin
  class ActiveSupport::TestCase
    #awesome stuff
  end
rescue => e
  puts e.backtrace
end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.