I have node running inside a docker container and am exposing the debug port so I can connect directly.
However what I see inside the console differs from devtools.
docker-compose.yml
ports:
- 4000:4000
- 9229:9229
However it will display correct in DevTools if I console.info(JSON.parse(JSON.stringify(settings)))
How could I see the data without having to do this odd hack?