From: Pit Capitain Date: 2005-10-06T05:01:13+09:00 Subject: Re: entire stack trace Eric Mahurin schrieb: > When the stack is deep and you get an exception, you get > something like this in the middle of the stack trace: > > ... 20 levels ... > > Is there any way to get the entire trace? Catch the exception and print its backtrace begin call_deeply_nested_method rescue Exception => ex puts ex, ex.backtrace end Regards, Pit