We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d00ff commit 9d5a41cCopy full SHA for 9d5a41c
packages/react-native-web/src/exports/AppRegistry/index.js
@@ -96,9 +96,10 @@ export default class AppRegistry {
96
params.rootTag = `#${params.rootTag.id}`;
97
98
console.log(
99
- `Running application "${appKey}" with appParams: ${JSON.stringify(params)}.\n` +
100
- `Development-level warnings: ${isDevelopment ? 'ON' : 'OFF'}.\n` +
101
- `Performance optimizations: ${isDevelopment ? 'OFF' : 'ON'}.`
+ `Running application "${appKey}" with appParams:\n`,
+ params,
+ `\nDevelopment-level warnings: ${isDevelopment ? 'ON' : 'OFF'}.` +
102
+ `\nPerformance optimizations: ${isDevelopment ? 'OFF' : 'ON'}.`
103
);
104
}
105
0 commit comments