> Is there some option I can use to display the "16 levels" of errors, > instead of having them hidden? Thanks. If you explicitely catch the error, you can get to it through the backtrace method: begin #do stuff rescue => e puts e.to_s puts e.backtrace.join("\n") end