### Environment Linux x86\_64 ### Steps to Reproduce 1. Build `SentryLayer` with both `event_filter` and `event_mapper` set. - `event_filter` ignores tracing events below `Level::ERROR`. - `event_mapper` always returns `EventMapping::Event(..)`. 3. Emit a tracing event with `Level::WARN` (`warn!()`). ### Expected Result The `warn` event is discarded by the filter; the Sentry instance does not receive any events. ### Actual Result The `warn` event is **not** discarded by the filter; the Sentry instance receives the mapped event.