From 6467125697e6fb26ef63ede190905575612c2267 Mon Sep 17 00:00:00 2001 From: Joshua Blum Date: Thu, 19 Mar 2026 13:20:36 -0400 Subject: [PATCH] notifyJSReady logging --- rnmodules/react-native-kb/ios/Kb.mm | 2 ++ 1 file changed, 2 insertions(+) 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