We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647b724 commit 2c52742Copy full SHA for 2c52742
lib/sentry_setup.dart
@@ -29,6 +29,8 @@ FutureOr<SentryEvent?> beforeSend(SentryEvent event, Hint? hint) async {
29
Future<void> initSentry({required VoidCallback appRunner}) async {
30
await SentryFlutter.init((options) {
31
options.addIntegration(LoggingIntegration());
32
+ // Ensure the se tag is added to all events
33
+ options.beforeSend = beforeSend;
34
// Core options
35
options.dsn = dotenv.env['SENTRY_DSN'];
36
options.enableTimeToFullDisplayTracing = true;
0 commit comments