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.
This commit is contained in:
Miroslav Bajtoš 2013-04-26 21:09:08 +02:00 committed by Bert Belder
parent 74323a95a0
commit fd9e01c031

View File

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