diff --git a/packages/react-native/Libraries/ReactNative/AppRegistry.js b/packages/react-native/Libraries/ReactNative/AppRegistry.js index 69afb10dc3a..a4b5b732f5f 100644 --- a/packages/react-native/Libraries/ReactNative/AppRegistry.js +++ b/packages/react-native/Libraries/ReactNative/AppRegistry.js @@ -196,10 +196,8 @@ const AppRegistry = { displayMode?: number, ): void { if (appKey !== 'LogBox') { - const logParams = __DEV__ - ? '" with ' + JSON.stringify(appParameters) - : ''; - const msg = 'Running "' + appKey + logParams; + const logParams = __DEV__ ? ` with ${JSON.stringify(appParameters)}` : ''; + const msg = `Running "${appKey}"${logParams}`; infoLog(msg); BugReporting.addSource( 'AppRegistry.runApplication' + runCount++,