I just got this error message:

...
from c:/ruby/lib/ruby/gems/1.8/gems/...
 ... 10 levels...
from c:/ruby/lib/ruby/gems/1.8/gems/...
...

and the bug (of course) is hidden somewhere in ... 10 levels....

How to force ruby to show full stack trace?

link|improve this question

Dupe of stackoverflow.com/questions/376513/… just yesterday. – Robert Gamble Dec 19 '08 at 12:51
1  
I searched the site before posting the question, but did not find it. Sorry. – Željko Filipin Dec 19 '08 at 13:34
No problem, the question was poorly tagged and not very well titled, I fixed both, the new link is stackoverflow.com/questions/376513/…. – Robert Gamble Dec 20 '08 at 2:10
feedback

closed as exact duplicate by Robert Gamble Dec 19 '08 at 12:51

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 17 down vote accepted
begin
  # code that raises exception
rescue Exception => e
  puts e.backtrace
end
link|improve this answer
5  
How do you show the stacktrace without catching an exception? Just in normal operation, that is. – Chirag Patel Jun 30 '11 at 14:56
2  
@ChiragPatel, maybe you want to use Kernel#caller. – Sony Santos Jan 2 at 16:06
feedback

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