chore: removed console.log in colletction.js

This commit is contained in:
Gabriel Grubba
2022-11-22 17:40:43 -03:00
parent ee4e8d2020
commit 580a4c588d

View File

@@ -774,7 +774,6 @@ Object.assign(Mongo.Collection.prototype, {
var self = this;
if (!self._collection.createIndex)
throw new Error('Can only call createIndex on server collections');
console.dir(index, options)
try {
await self._collection.createIndex(index, options);
} catch (e) {