You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the soft-deleteable event listener fires pre and post events, so maybe create a listener for the pre-softdelete event then manually calling the audit subscriber flush?
something like:
public function onFlush(EventArgs $args)
{
$ddas = $this->container->get('datadog.event_subscriber.audit');
$ddas->onFlush($args);
}
I can't get any soft-delete event logged. I'm using DoctrineExtensions for soft-delete but changes doesn't get logged as remove and neither as update.
The text was updated successfully, but these errors were encountered: