I've recently added Bull to my project to offload things like synchronizing documents to 3rd party services and everything's working well, except errors occurring while processing jobs don't end up in Sentry. They're only logged on the jobs themselves, but since we're running our application on multiple configurations, it means I have to constantly monitor all these instances for job processing errors.
I know I can add an error handler to a processor, but I have quite a few processors already, so I'd prefer another, more global, solution
Is there any way to make sure these errors are also sent to Sentry?