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);