HI.
How can i see my console.log(params) on React Developer tools ?????
The same question is here.
Chrome-based version shows in-app console.log calls like a charm, while standalone one doesn't.
Why?
Env: latest react-native, standalone devtools and Android studio simulator,
react-native log-android shows console output with no issues.
Any suggestions to make console work in standalone devtools?
Any response from mantainers, perhaps?
By now only RN connect/disconnect information logged in devtool console
I don't understand what you're referring to. React DevTools never showed console logs. You are probably thinking about some other tool.
Chrome-based version (which I referenced above) does - I doublechecked it right now, see proof below.
Standalone one, according to your response - doesn't.
Probably this should go to documentation.

i use a good solution.
i do like this
after
react-native run-android ... react-native log-android
and i see my console.log()
@karenYerevan, I do the same, but it's definitely more conviniet to have everything in one place.
On top of this log-android is quite more verbose and doesn't allow to expand objects and arrays - which is very handy sometimes.
maybe you true .... but for me log-android a best way ...
its my nature that i don't like when my package.json is overloaded )))))))
I have RDT installed as Chrome plugin and as standalone global app - so my package.json stays untouched as well)
Where do you expect to see the logs in standalone version? On your screenshot the console is part of the browser DevTools. It's not a part of React DevTools. Therefore standalone React DevTools doesn't have it (just like React DevTools tab in Chrome doesn't have any dedicated console).
In console tab, I suppose, it will be the most convinient.
Thank you for explanation, but probably pointing in docs this internal RDT dev knowledge about sources of resulting functionality would prevent such questions from users which are quite a bit right expecting the same behaviour from both RDT versions.
Or - probably even better - feature request for standalone RTD, why not?
This is not internal knowledge, it is just a misunderstanding between us. Happy to take a PR clarifying it.
In console tab
The console tab is not and has never been a part of React DevTools. "React DevTools" is just the panel with React components.
The console tab has absolutely no relation to it. They are independent. We are not in control of the "Console" tab. It only exists in Chrome.
You can always use the console tab in Chrome DevTools (note: "Chrome DevTools" is not the same as "React DevTools"). Even if you use standalone React DevTools, you still can use the Console tab in Chrome DevTools if you choose "Enable Remote JS Debugging".
In other words:
Chrome DevTools = Console + Network + ... + React DevTools
This is why it doesn't really make sense to ask about Console in standalone React DevTools. Console has never been a part of it. The only reason you see Console in the browser is because it is part of the browser DevTools, not because we are doing something special to provide it.
Also to be clear, you can still have Console open in Chrome while using standalone React DevTools. They should work fine together.
the issue is that then the chrome js engine takes over so debugging doesn't work...
@gaearon can we add console logs? I think it would make a lot of sense to have it in react dev tools
Most helpful comment
@gaearon can we add console logs? I think it would make a lot of sense to have it in react dev tools