Skip to content

Commit 36117c7

Browse files
committed
Removed comments
1 parent aefe415 commit 36117c7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/pg/lib/query.js

-4
Original file line numberDiff line numberDiff line change
@@ -211,17 +211,13 @@ class Query extends EventEmitter {
211211
})
212212
this.submitP = p;
213213
this.submitRes = res;
214-
console.log("Submitting");
215214
if (this.requiresPreparation()) {
216-
console.log("Is of type require preparation");
217215
connection.writeArray(this.toBeWrittenInBuffer);
218216
this._getRows(connection, this.rows)
219217
} else {
220-
console.log("Does not require preparation");
221218
connection.query(this.text);
222219
}
223220
await this.submitP;
224-
console.log("Done submitting");
225221
this.dataParsed = undefined;
226222
this.toBeWrittenInBuffer = [];
227223
}

0 commit comments

Comments
 (0)