Skip to content

Commit

Permalink
debugger: print port number when connecting to debuggee
Browse files Browse the repository at this point in the history
To improve troubleshooting of debugger problems in the future,
the debugger repl now prints the port it is connecting to.
  • Loading branch information
bajtos authored and piscisaureus committed Apr 26, 2013
1 parent 74323a9 commit fd9e01c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/_debugger.js
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ Interface.prototype.trySpawn = function(cb) {
}

setTimeout(function() {
self.print('connecting..', true);
self.print('connecting to port ' + port + '..', true);
attemptConnect();
}, 50);
};

0 comments on commit fd9e01c

Please sign in to comment.