How do I write to console from a .js method?
console.log is not showing anything in Console tab in Visual Studio Code
Here is an example of my method
_onPressItem = (index) => {
console.log("Property Finder >> Pressed row: "+index);
};
This is triggered when I press on an item in my ListView. If I run this through XCode, I will see console.log line above printed in XCode. But if I debug it in VSCode, I see no console.log line being printed at all.
My Steps: 1. Open my project in VSCode My VS Code has installed react-native tools already
Cmd+P then type command Debug: Start Debuging (it is an available command, I just select it)
My App starts, DEBUG CONSOLE tab shows some lines but no line from my console.log command is shown
I added:
"outputCapture": "std"
to my debug launch configuration and console.log statements work in the "DEBUG CONSOLE" tab.
Alternatively:
"console": "integratedTerminal"
shows console.log in the "TERMINAL" tab.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With