Radu Spineanu wrote: > I was wondering if it possible that in case of an exception the program > could send an email with the exception, and at the same time log it in > a file. > Never mind... begin loop do # stuff sleep 15 end rescue Exception => rescueError if (rescueError) log.fatal rescueError.message log.fatal rescueError.backtrace.inspect log.fatal '---------------------------------' end end Radu Spineanu