Created
November 27, 2020 12:46
-
-
Save kmagiera/1e0e36f9fee82ac7b3d5b07291621774 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/ios/REANodesManager.m b/ios/REANodesManager.m | |
index 472ff05ed..7bc0f279e 100644 | |
--- a/ios/REANodesManager.m | |
+++ b/ios/REANodesManager.m | |
@@ -299,11 +299,13 @@ - (void)createNode:(REANodeID)nodeID | |
node.nodesManager = self; | |
node.updateContext = _updateContext; | |
_nodes[nodeID] = node; | |
+ NSLog(@"REANIMATED_BUG CREATE %@ %@", nodeID, node); | |
} | |
- (void)dropNode:(REANodeID)nodeID | |
{ | |
REANode *node = _nodes[nodeID]; | |
+ NSLog(@"REANIMATED_BUG DROP %@ %@", nodeID, node); | |
if (node) { | |
[node onDrop]; | |
[_nodes removeObjectForKey:nodeID]; | |
@@ -342,6 +344,7 @@ - (void)connectNodeToView:(REANodeID)nodeID | |
{ | |
RCTAssertParam(nodeID); | |
REANode *node = _nodes[nodeID]; | |
+ NSLog(@"REANIMATED_BUG CONNECT_TO_VIEW %@ %@", nodeID, node); | |
RCTAssertParam(node); | |
if ([node isKindOfClass:[REAPropsNode class]]) { | |
@@ -354,6 +357,7 @@ - (void)disconnectNodeFromView:(REANodeID)nodeID | |
{ | |
RCTAssertParam(nodeID); | |
REANode *node = _nodes[nodeID]; | |
+ NSLog(@"REANIMATED_BUG DISCONNECT_FROM_VIEW %@ %@", nodeID, node); | |
RCTAssertParam(node); | |
if ([node isKindOfClass:[REAPropsNode class]]) { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment