From: snacktime Date: 2006-08-27T13:32:39+09:00 Subject: Re: logging a backtrace On 8/26/06, Ezra Zygmuntowicz wrote: > > 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 Thanks, that's just what I was looking for.