From: Alex Young Date: 2007-09-26T16:59:07+09:00 Subject: Re: How to print FULL stacktrace of exception w/ line #? Sylvain Joyeux wrote: >> Don't rescue it, full stack trace! :P > ... or not > Ruby removes in-betweeen lines if a backtrace is 'too long'. The limit is > not configurable, so it you have long backtraces (and if you need what is > in the middle) you're fucked. > You can get that information when you rescue the exception - Exception#backtrace is an array of caller information. -- Alex