Reputation: 11
After I updated visual studio when I'm trying to debug my javascript code but debugger gets disconnected automatically.
I added a console.log("......")
statement to the snippet:
The console.log
statement is displayed properly.
Upvotes: 1
Views: 389
Reputation: 8915
The log show you:
- Debugger attached
- Shows the console.log("......")
- Waiting for the debugger to disconnect
Let's talk about the last item, it shows that the debugger is still running and listening for the quiet command (usually ctrl+c
).
So the debugger is up and running until disconnecting or quitting, so use it without any problem.
Upvotes: 1