Add extra debug print statement to tls.js

This commit is contained in:
Ryan Dahl 2011-02-23 16:19:41 -08:00
parent a91b140963
commit 340291c085

View File

@ -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++) {