diff --git a/packages/react-native-web/src/exports/AppRegistry/index.js b/packages/react-native-web/src/exports/AppRegistry/index.js index 1051a857..f085cc56 100644 --- a/packages/react-native-web/src/exports/AppRegistry/index.js +++ b/packages/react-native-web/src/exports/AppRegistry/index.js @@ -96,9 +96,10 @@ export default class AppRegistry { params.rootTag = `#${params.rootTag.id}`; console.log( - `Running application "${appKey}" with appParams: ${JSON.stringify(params)}.\n` + - `Development-level warnings: ${isDevelopment ? 'ON' : 'OFF'}.\n` + - `Performance optimizations: ${isDevelopment ? 'OFF' : 'ON'}.` + `Running application "${appKey}" with appParams:\n`, + params, + `\nDevelopment-level warnings: ${isDevelopment ? 'ON' : 'OFF'}.` + + `\nPerformance optimizations: ${isDevelopment ? 'OFF' : 'ON'}.` ); }