diff --git a/Libraries/ReactNative/AppRegistry.js b/Libraries/ReactNative/AppRegistry.js index 93c4447c41a81d..f1ff791dd3d055 100644 --- a/Libraries/ReactNative/AppRegistry.js +++ b/Libraries/ReactNative/AppRegistry.js @@ -189,8 +189,10 @@ const AppRegistry = { displayMode?: number, ): void { if (appKey !== 'LogBox') { - const msg = - 'Running "' + appKey + '" with ' + JSON.stringify(appParameters); + const logParams = __DEV__ + ? '" with ' + JSON.stringify(appParameters) + : ''; + const msg = 'Running "' + appKey + logParams; infoLog(msg); BugReporting.addSource( 'AppRegistry.runApplication' + runCount++,