How do I console.log()
from dependencies in node_modules
in my node project? I'm using the default create-react-app
setup.
When I include console.log()
in my application code, logging works fine. However, when I try to include console.log()
in the code of one of the project's dependencies in node_modules
, these do not appear in my console.
Any way I can get those logs?