yes
Yes
react-native -v:node -v:npm -v:yarn --version:Then, specify:
(Write your steps here:)
react-native init NewProject...
export default class NewProject extends Component {
render() {
console.log("This should be printed in console!");
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
To get started, edit index.ios.js
</Text>
<Text style={styles.instructions}>
Press Cmd+R to reload,{'\n'}
Cmd+D or shake for dev menu
</Text>
</View>
);
}
}
...
react-native run-ios from project rootIn step 6 the text This should be printed in console! should have been printed to Chrome console
Nothing gets printed to console.
I think the issue may be related to the Chrome release since it was after an upgrade it stopped working.
https://github.com/andidev/react-native-console-log-bug-example-project
No issue here, for some reason a console filter where applied. I how no idea how though. Closing this.
_-sigh-_
I ran into the exact same problem:

Me too all of a sudden
yeah strange same thing happened to me. thankfully i found this thread so I bothered checking the filters
having same problem, no filtering enabled
solution was to run debug mode (production clears console.log while minifying the code)
Most helpful comment
No issue here, for some reason a console filter where applied. I how no idea how though. Closing this.