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
Miroslav Bajtoš 2013-04-26 21:09:08 +02:00 committed by Bert Belder
parent 74323a95a0
commit fd9e01c031
1 changed files with 1 additions and 1 deletions

View File

@ -1702,7 +1702,7 @@ Interface.prototype.trySpawn = function(cb) {
} }
setTimeout(function() { setTimeout(function() {
self.print('connecting..', true); self.print('connecting to port ' + port + '..', true);
attemptConnect(); attemptConnect();
}, 50); }, 50);
}; };