When an exception occurs in a component function with the async keyword in the signature, the error is not being logged to the console.
https://github.com/ShawnCholeva/bugsnag-async-func-error

Error messages:

Just to add more context, I pulled the repo down again and noticed that the "Send Handled JS Exception" and "Trigger Promise Rejection" button from the rn063example also don't show the error in the console.
Hey @ShawnCholeva, thanks for raising providing the repro. Confirmed the behaviour you're seeing. We'll take a look into this.
When running without Bugsnag enabled, we'd expect to see a warning when a possible unhandled rejection occurs:

With Bugsnag enabled, this unhandled rejection error does get reported to Bugsnag, but it's hidden from the console.
@xander-jones Also just ran into this. I'm on @bugsnag/react-native@^7.5.0. This bug cost me a bunch of time. My async code was throwing an exception during development and bugsnag was swallowing it. It was sent to BugSnag but async exceptions no longer get logged to console. It took me awhile to figure out because of all things I except an uncaught exception to never just disappear!
IMO this needs to be a high priority bug. It's going to seriously trip up a lot of people's development workflows. What's the last known working version so we can downgrade until there's a fix?
Hi @AndrewMorsillo,
This behaviour will be happening for all versions of @bugsnag/react-native so unfortunately there is no known working version until we can resolve this.
What you could do, is switch off the unhandledRejections error type when in development which may help somewhat in the meantime.
https://docs.bugsnag.com/platforms/android/configuration-options/#enablederrortypes
https://docs.bugsnag.com/platforms/ios/configuration-options/#enablederrortypes
Any update on this @johnkiely1 ? This continues to be a pretty big irritation.
@AndrewMorsillo, this is next up on our to-do list. We'll keep you posted in this thread when an updated release is ready.
Most helpful comment
Hey @ShawnCholeva, thanks for raising providing the repro. Confirmed the behaviour you're seeing. We'll take a look into this.
When running without Bugsnag enabled, we'd expect to see a warning when a possible unhandled rejection occurs:

With Bugsnag enabled, this unhandled rejection error does get reported to Bugsnag, but it's hidden from the console.