AppFlowy/frontend/appflowy_flutter/lib/startup/tasks/sentry.dart
2024-08-17 17:39:40 +08:00

31 lines
692 B
Dart

import '../startup.dart';
class InitSentryTask extends LaunchTask {
const InitSentryTask();
@override
Future<void> initialize(LaunchContext context) async {
// Disable sentry temporarily, it will cause the app unresponsive
return;
// const dsn = Env.sentryDsn;
// if (dsn.isEmpty) {
// Log.info('Sentry DSN is not set, skipping initialization');
// return;
// }
// Log.info('Initializing Sentry');
// await SentryFlutter.init(
// (options) {
// options.dsn = dsn;
// options.tracesSampleRate = 0.1;
// options.profilesSampleRate = 0.1;
// },
// );
}
@override
Future<void> dispose() async {}
}