From f3a969f38d7a2c74bf63ee05c4c819c0873059a9 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 13 Sep 2024 11:50:32 -0700 Subject: [PATCH] Do not print Bridgeless Mode is enabled on console anymore. (#46486) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/46486 We probably don't need this extra log anymore as this information is already avaialbe from the start application log. Changelog: [General] [Changed] - Do not print Bridgeless Mode is enabled on console anymore Reviewed By: fkgozali Differential Revision: D62639866 fbshipit-source-id: 720bb1446a1e1be71bf27830fe4156ae64a1586f --- packages/react-native/Libraries/ReactNative/AppRegistry.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/react-native/Libraries/ReactNative/AppRegistry.js b/packages/react-native/Libraries/ReactNative/AppRegistry.js index 9448296efcd..29c12fc109d 100644 --- a/packages/react-native/Libraries/ReactNative/AppRegistry.js +++ b/packages/react-native/Libraries/ReactNative/AppRegistry.js @@ -361,10 +361,6 @@ global.RN$SurfaceRegistry = { setSurfaceProps: AppRegistry.setSurfaceProps, }; -if (global.RN$Bridgeless === true) { - console.log('Bridgeless mode is enabled'); -} - registerCallableModule('AppRegistry', AppRegistry); module.exports = AppRegistry;