From: Ezra Zygmuntowicz Date: 2006-08-27T13:16:46+09:00 Subject: Re: logging a backtrace On Aug 26, 2006, at 8:35 PM, snacktime wrote: > If I catch an exception, is there a way to produce a backtrace that I > can log using something like logger? > rescue Exception => e logger.error "#{ e.message } - (#{ e.class })" << "\n" << (e.backtrace or []).join("\n") end That is what I use to get a decent looking backtrace -Ezra