Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix dsn
  • Loading branch information
marandaneto committed Oct 28, 2020
commit 665d9e876f070e48024883c589f3ec134ed864aa
2 changes: 1 addition & 1 deletion dart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ In your Dart code, import `package:sentry/sentry.dart` and initialize the Sentry
```dart
import 'package:sentry/sentry.dart';

Sentry.init((options) => options.dsn = '___PUBLIC_DSN___');
Sentry.init((options) => options.dsn = 'https://[email protected]/add-your-dsn-here');
```

In an exception handler, call `captureException()`:
Expand Down