Skip to content

Commit daeee2a

Browse files
jonnycaleyfacebook-github-bot
authored andcommitted
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: #35708 Test Plan: N/A as change is related to logging Reviewed By: christophpurrer Differential Revision: D42233178 Pulled By: robhogan fbshipit-source-id: f48e5abc036393a40f836cf0bf8c1d69f03ca848
1 parent 292268e commit daeee2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReactAndroid/src/main/java/com/facebook/react/bridge/ReactContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ public void handleException(Exception e) {
422422
"Unable to handle Exception - catalystInstanceVariableExists: "
423423
+ catalystInstanceVariableExists
424424
+ " - isCatalystInstanceAlive: "
425-
+ !isCatalystInstanceAlive
425+
+ isCatalystInstanceAlive
426426
+ " - hasExceptionHandler: "
427427
+ hasExceptionHandler,
428428
e);

0 commit comments

Comments
 (0)