This repository was archived by the owner on Mar 21, 2024. It is now read-only.

Description
The current version extends AppenderSkeleton, which synchronously sends events to Sentry. If the Sentry server has any latency, this can cause the application code to block. If we extended BufferingAppenderSkeleton instead, it would append asynchronously and we would inherit any of its buffering options.
I'm happy to do a PR on this, but I'd like your opinion on whether we should add a separate BufferingSentryAppender or just change the existing one to extend BufferingAppenderSkeleton.