Sha256: a657c775ac77568904f9a900421863ab8e96a3a63388aab9b3be806cc36c71ba
Contents?: true
Size: 1.23 KB
Versions: 4
Compression:
Stored size: 1.23 KB
Contents
module Ratchetio module Rails module Middleware module ExceptionCatcher def self.included(base) base.send(:alias_method_chain, :render_exception, :ratchetio) end def render_exception_with_ratchetio(env, exception) exception_data = nil begin controller = env['action_controller.instance'] request_data = controller.try(:ratchetio_request_data) person_data = controller.try(:ratchetio_person_data) exception_data = Ratchetio.report_exception(exception, request_data, person_data) rescue => e # TODO use logger here? puts "[Ratchet.io] Exception while reporting exception to Ratchet.io: #{e}" end # if an exception was reported, save uuid in the env # so it can be displayed to the user on the error page if exception_data begin env['ratchetio.exception_uuid'] = exception_data[:uuid] rescue => e puts "[Ratchet.io] Exception saving uuid in env: #{e}" end end # now continue as normal render_exception_without_ratchetio(env, exception) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems