Possible to send error details to local logging service as well?

I have a simple logging system set up currently that I don’t want to drop completely, and really would love to keep as backup to the service that Sentry provides. I also don’t want two running side-by-side.

So I’m wondering, is it possible when running Sentry to have it also pass the error data along to a local endpoint for saving to a log file?

Depending on the SDK, you should be able to hook into the “send event” path. In some cases, this would be extending our base SDK class (Client), in others we might actually provide a real hook. Our goal is to do the latter going forward, but some SDKs are a bit behind on those features.