Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best Practices for Client-Side Logging and Error Handling in React Native

I am doing a project in react native in which I want write and read logger for debugging when app run at the client-side. my question is how to write / read logger(debug logging) in react native app. or how to use remote-debugging in react native.

like image 292
ViShU Avatar asked Sep 14 '25 21:09

ViShU


1 Answers

The official documents suggest the methods you want

react-native-debugging

If you want to check for errors in the release app, you can use the following library.

sentry document

like image 156
hong developer Avatar answered Sep 17 '25 12:09

hong developer