From fd9e01c031ac843955532af4dd87b5caec38ba73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Fri, 26 Apr 2013 21:09:08 +0200 Subject: [PATCH] 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. --- lib/_debugger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/_debugger.js b/lib/_debugger.js index 6367e35f8ea..106e55cb555 100644 --- a/lib/_debugger.js +++ b/lib/_debugger.js @@ -1702,7 +1702,7 @@ Interface.prototype.trySpawn = function(cb) { } setTimeout(function() { - self.print('connecting..', true); + self.print('connecting to port ' + port + '..', true); attemptConnect(); }, 50); };