Add debug logs to track down T62192299 exception source

Summary:
Add debug logs to track down T62192299 exception source

Changelog: [Internal]

Reviewed By: RSNara

Differential Revision: D20878063

fbshipit-source-id: 94acd56c45d4b529a695d1b4d2bfd10d8f725e63
This commit is contained in:
Joshua Gross
2020-04-06 15:48:13 -07:00
committed by Facebook GitHub Bot
parent f21b4eb571
commit ff38f47b60
3 changed files with 13 additions and 0 deletions
@@ -1036,6 +1036,12 @@ public class ReactInstanceManager {
try {
setupReactContext(reactApplicationContext);
} catch (Exception e) {
// TODO T62192299: remove this after investigation
FLog.e(
ReactConstants.TAG,
"ReactInstanceManager caught exception in setupReactContext",
e);
mDevSupportManager.handleException(e);
}
}