class Rufus::Scheduler::SchedulerCore

def handle_exception (job, exception)


outputs the error message to STDOUT
Feel free to override this method. The default implementation simply
def handle_exception (job, exception)
  if self.respond_to?(:log_exception)
    #
    # some kind of backward compatibility
    log_exception(exception)
  else
    puts '=' * 80
    puts "scheduler caught exception :"
    puts exception
    puts '=' * 80
  end
end