k211beg
k211beg

Reputation: 11

debugger automaticly disconnect

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:

enter image description here

The console.log statement is displayed properly.

Upvotes: 1

Views: 389

Answers (1)

nima
nima

Reputation: 8915

The log show you:

  1. Debugger attached
  2. Shows the console.log("......")
  3. 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

Related Questions