From b98994ae39ad6dda4a2504c3390122fa634088e6 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 28 Jan 2011 18:06:37 +0100 Subject: [PATCH] removed debug output --- lib/query.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/query.js b/lib/query.js index 4e93680a..12a7108e 100644 --- a/lib/query.js +++ b/lib/query.js @@ -37,7 +37,6 @@ p.submit = function(connection) { var names = []; var rows = []; var handleRowDescription = function(msg) { - console.log(JSON.stringify(msg)); for(var i = 0; i < msg.fields.length; i++) { converters[i] = dataTypeParsers[msg.fields[i].dataTypeID] || noParse; names[i] = msg.fields[i].name; @@ -48,7 +47,6 @@ p.submit = function(connection) { for(var i = 0; i < msg.fields.length; i++) { var rawValue = msg.fields[i]; result[names[i]] = rawValue === null ? null : converters[i](rawValue); - console.log(names[i] + ": " + result[names[i]]); } self.emit('row', result);