diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ac863594f..60f43591bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixes + +- Session: missing mechanism.handled is considered crash ([#3353](https://github.com/getsentry/sentry-cocoa/pull/3353)) + ### Features - Breadcrumbs for file I/O operations ([#1649](https://github.com/getsentry/sentry-dart/pull/1649)) diff --git a/logging/example/sentry_logging_example.dart b/logging/example/sentry_logging_example.dart index 408c40d799..d7b1713e44 100644 --- a/logging/example/sentry_logging_example.dart +++ b/logging/example/sentry_logging_example.dart @@ -20,7 +20,7 @@ Future main() async { Future runApp() async { final log = Logger('MyAwesomeLogger'); - log.warning('a warning!'); + log.warning('this is a warning!'); try { throw Exception();