From 859d2b1171d860a83044b9c3d7d668bdb44ce478 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Ciparelli?= Date: Thu, 21 Mar 2013 17:14:41 -0300 Subject: [PATCH] removed console.log line --- index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.js b/index.js index df4fe56a6f..3608bcc87b 100644 --- a/index.js +++ b/index.js @@ -627,7 +627,6 @@ RedisClient.prototype.return_reply = function (reply) { } else { this.pub_sub_mode = true; } - console.log(command_obj); // subscribe commands take an optional callback and also emit an event, but only the first response is included in the callback // TODO - document this or fix it so it works in a more obvious way if (command_obj && typeof command_obj.callback === "function") { @@ -710,7 +709,7 @@ RedisClient.prototype.send_command = function (command, args, callback) { return callback(err); } } - + buffer_args = false; for (i = 0, il = args.length, arg; i < il; i += 1) { if (Buffer.isBuffer(args[i])) {