diff --git a/rnmodules/react-native-kb/ios/Kb.mm b/rnmodules/react-native-kb/ios/Kb.mm index 6bb4193f51ea..8494d25892b5 100644 --- a/rnmodules/react-native-kb/ios/Kb.mm +++ b/rnmodules/react-native-kb/ios/Kb.mm @@ -322,7 +322,9 @@ - (NSDictionary *)getConstants { RCT_EXPORT_METHOD(notifyJSReady) { __weak __typeof__(self) weakSelf = self; + NSLog(@"notifyJSReady: called from JS, queuing main thread block"); dispatch_async(dispatch_get_main_queue(), ^{ + NSLog(@"notifyJSReady: main thread block executing"); // Setup infrastructure [[NSNotificationCenter defaultCenter] addObserver:self