Skip to content

Commit b98994a

Browse files
committed
removed debug output
1 parent 37e958f commit b98994a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/query.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ p.submit = function(connection) {
3737
var names = [];
3838
var rows = [];
3939
var handleRowDescription = function(msg) {
40-
console.log(JSON.stringify(msg));
4140
for(var i = 0; i < msg.fields.length; i++) {
4241
converters[i] = dataTypeParsers[msg.fields[i].dataTypeID] || noParse;
4342
names[i] = msg.fields[i].name;
@@ -48,7 +47,6 @@ p.submit = function(connection) {
4847
for(var i = 0; i < msg.fields.length; i++) {
4948
var rawValue = msg.fields[i];
5049
result[names[i]] = rawValue === null ? null : converters[i](rawValue);
51-
console.log(names[i] + ": " + result[names[i]]);
5250
}
5351
self.emit('row', result);
5452

0 commit comments

Comments
 (0)