From: Ryan Dahl Date: Thu, 24 Feb 2011 00:19:41 +0000 (-0800) Subject: Add extra debug print statement to tls.js X-Git-Tag: v0.4.2~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=340291c085f629050bd66668dba7cb006f896d89;p=platform%2Fupstream%2Fnodejs.git Add extra debug print statement to tls.js --- diff --git a/lib/tls.js b/lib/tls.js index db6807e..d554258 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++) {