Why does ActiveSupport::Notifications::Instrumenter make payload[:exception] an array?

Hi,

This is probably a stupid question, but I’m wondering if anyone knows
why

doesn’t just save the actual exception in the payload when an exception
occurs. Instead it does this:

    *rescue Exception => e*
  •      payload[:exception] = [e.class.name, e.message]*
    
  •      raise e*
    

Thanks

On Wed, Jan 2, 2013 at 12:34 PM, bjg [email protected] wrote:

This is probably a stupid question, but I’m wondering if anyone knows why

doesn’t just save the actual exception in the payload when an exception
occurs. Instead it does this:

    rescue Exception => e
      payload[:exception] = [e.class.name, e.message]
      raise e

Those are the only things it needs to make a notification, what type
of exception it was, and the associated error message.

But I can subscribe to a notification and get access to the ‘exception’
in
the payload like so:

ActiveSupport::Notifications.subscribe
“process_action.action_controller”
do |name, start, finish, id, payload|
exception = payload[:exception]

If the entire exception were in the payload or at least something

containing

the stacktrace I could log it, send an email etc.

end

I realize it’s probably the way it is because we want the payload to be
easily serializable so that if we want to push the event to redis or
something that can be easily done, but might be nice if the stacktrace
were
available too.

On Thursday, January 3, 2013 10:41:55 PM UTC-5, tamouse wrote:

On Wed, Jan 2, 2013 at 12:34 PM, bjg <[email protected]
<javascript:>>