vote up 2 vote down star

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?

flag

Dupe of stackoverflow.com/questions/376513/… just yesterday. – Robert Gamble Dec 19 '08 at 12:51
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

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

1 Answer

vote up 5 vote down check
begin
  # code that raises exception
rescue Exception => e
  puts e.backtrace
end
link|flag

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