diff --git a/structure/storage/interfaces/MongodbTable.js b/structure/storage/interfaces/MongodbTable.js index b782db8..9972ebf 100644 --- a/structure/storage/interfaces/MongodbTable.js +++ b/structure/storage/interfaces/MongodbTable.js @@ -168,7 +168,6 @@ class MongodbTable { //Lazy Function _handleData(data) { //Convert data._id to Mongo ObjectIds (gets converted to plaintext through shard communication) if(data._id) { - console.log(data._id, typeof data._id); if(typeof data._id === 'string') data._id = ObjectId(data._id); else if(typeof data._id === 'object') data._id = { $in: Object.values(data._id)[0].map((id) => {