From 340291c085f629050bd66668dba7cb006f896d89 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 23 Feb 2011 16:19:41 -0800 Subject: [PATCH] Add extra debug print statement to tls.js --- lib/tls.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/tls.js b/lib/tls.js index db6807e06c..d5542583ba 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -773,6 +773,7 @@ Server.prototype.setOptions = function(options) { // // TODO: make port, host part of options! exports.connect = function(port /* host, options, cb */) { + debug('tls.connect called with ' + JSON.stringify(arguments)); // parse args var host, options = {}, cb; for (var i = 1; i < arguments.length; i++) {