module Mnemosyne::Probes::ActionDispatch::ShowExceptions::Probe::Instrumentation

Public Instance Methods

render_exception(env, exception) click to toggle source
Calls superclass method
# File lib/mnemosyne/probes/action_dispatch/show_exceptions.rb, line 13
def render_exception(env, exception)
  if (trace = ::Mnemosyne::Instrumenter.current_trace)
    trace.attach_error(exception)
  end

  super
end