Closed

Description
Currently:
return array(
'kernel.exception' => array(
array('processException', 10),
array('logException', 0),
array('notifyException', -10),
)
);
I think it should be changed to:
return array(
KernelEvents::EXCEPTION => array(
array('processException', 10),
array('logException', 0),
array('notifyException', -10),
)
);
If you agree you may add the "Actionable" label to this issue.