Problem Statement
Fatal usually means your app crashed (fatal == death), but FlutterErrorIntegration on line 64 logs all FlutterError as fatal instead of error, even though they are not crashing the app.
I have wrapped my app with runZonedGuarded and all errors are directed to Sentry so AFAIK the only way I can have a crash is from the native side.
Solution Brainstorm
The FlutterError level should be an option we can pass, so we can decide the severity it has.
Are you willing to submit a PR?
None
Problem Statement
Fatal usually means your app crashed (fatal == death), but
FlutterErrorIntegrationon line 64 logs allFlutterErrorasfatalinstead oferror, even though they are not crashing the app.I have wrapped my app with
runZonedGuardedand all errors are directed to Sentry so AFAIK the only way I can have a crash is from the native side.Solution Brainstorm
The
FlutterErrorlevel should be an option we can pass, so we can decide the severity it has.Are you willing to submit a PR?
None