Can I define the order in which plugins run? I want to be notified of 404 errors immediately so I can find the broken links and fix them. I wrote a plugin to grab the onPageNotFound event and then send a message to me in a #grav-alerts Slack channel.
The problem is the required Error plugin. On line 48 it runs $event->stopPropagation();, so my plugin does not have the chance to run. If I comment out that line, I get the desired message. I don't want to have to remember to comment that line out every time I upgrade.