fix: Too much logging

This commit is contained in:
NunoSempere 2022-02-12 16:27:18 -05:00
parent 3a901077c9
commit 7bd1fc50c5

View File

@ -202,7 +202,6 @@ export async function pgUpsert({ contents, schema, tableName }) {
await runPgCommand({ command: createUniqueIndex(schema, tableName), pool: readWritePool })
}
console.log(`Upserting into postgres table ${schema}.${tableName}`)
console.log({ contents, schema, tableName })
let i = 0
for (let datum of contents) {
await pgInsert({ datum, schema, tableName })