Correct logging (#35708)

Summary:
Fixes incorrect logging that I found whilst debugging

## Changelog

[Android] [FIXED] - Fixed incorrect logging of `isCatalystInstanceAlive` in exception handler

Pull Request resolved: https://github.com/facebook/react-native/pull/35708

Test Plan: N/A as change is related to logging

Reviewed By: christophpurrer

Differential Revision: D42233178

Pulled By: robhogan

fbshipit-source-id: f48e5abc036393a40f836cf0bf8c1d69f03ca848
This commit is contained in:
jonathancaley
2023-01-03 04:24:57 -08:00
committed by Facebook GitHub Bot
parent 292268ea3f
commit daeee2a661
@@ -422,7 +422,7 @@ public class ReactContext extends ContextWrapper {
"Unable to handle Exception - catalystInstanceVariableExists: "
+ catalystInstanceVariableExists
+ " - isCatalystInstanceAlive: "
+ !isCatalystInstanceAlive
+ isCatalystInstanceAlive
+ " - hasExceptionHandler: "
+ hasExceptionHandler,
e);