VS Code Debug Console Not Showing line number for logs

Viewed 828

This seems to have just recently changed for me. I like to log some messages and see the line/files it comes from, but now when I log an Object, the line number no longer shows. Anyone have any ideas? Thanks enter image description here

As you can see, the 'Test' log shows file name and line, but the obj log does not.

1 Answers

Adding "outputCapture": "console" to a configuration in the launch.json helped me.

Related