mirror of https://github.com/nodejs/node.git
debugger: print port number when connecting to debuggee
To improve troubleshooting of debugger problems in the future, the debugger repl now prints the port it is connecting to.pull/5010/head
parent
74323a95a0
commit
fd9e01c031
|
@ -1702,7 +1702,7 @@ Interface.prototype.trySpawn = function(cb) {
|
|||
}
|
||||
|
||||
setTimeout(function() {
|
||||
self.print('connecting..', true);
|
||||
self.print('connecting to port ' + port + '..', true);
|
||||
attemptConnect();
|
||||
}, 50);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue