react-native-firebase/docs/modules/crash.md

36 lines
1.2 KiB
Markdown
Raw Normal View History

2017-03-17 15:21:57 +00:00
# Crash Reporting
2017-03-17 15:23:14 +00:00
RNFirebase provides crash reporting for your app out of the box. Please note crashes do not appear in real-time on the console, they tend to take a number of hours to appear.
2017-03-17 15:21:57 +00:00
## Manual Crash Reporting
2017-04-27 11:18:12 +00:00
If you want to manually report a crash, such as a pre-caught exception this is possible by using the `report` method.
2017-03-17 15:21:57 +00:00
```javascript
try {
initSomeSDK();
} catch (e) {
firebase.crash().log('Some SDK failed to boot!');
firebase.crash().report(e);
}
```
### log
Logs a message that will appear in a subsequent crash report.
`firebase.crash().log(String message);`
### logcat
- **Android**: Logs a message that will appear in a subsequent crash report as well as in [logcat](https://developer.android.com/studio/command-line/logcat.html).
- **iOS**: Logs the message in the subsequest crash report only (same as `log`).
`firebase.crash().logcat(int level, String tag, String message);`
### report
Files a crash report, along with any previous logs to Firebase. An [Error](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error) object must be passed into the report method.
2017-03-17 15:40:19 +00:00
`firebase.crash().report(Error, int maxStackSize)`.