Skip to content

Commit 956123a

Browse files
committed
remove console.log
1 parent ad11adc commit 956123a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/mongodb/sources/new-document/new-document.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ export default {
9595
},
9696
};
9797
const documents = await collection.find(query).sort(sort)
98-
.toArray(); console.log(documents);
98+
.toArray();
9999
const docs = [];
100100
for (const doc of documents) {
101-
const ts = this.getTs(doc); console.log(ts);
101+
const ts = this.getTs(doc);
102102
if (!(ts > lastTs) || (max && count >= max)) {
103103
break;
104104
}

0 commit comments

Comments
 (0)