From 6cf0217d226fe1fa788bfd30b1fd4a6a42766134 Mon Sep 17 00:00:00 2001 From: nolan Date: Mon, 21 Jun 2021 14:29:03 -0700 Subject: [PATCH] remove console log --- structure/storage/interfaces/MongodbTable.js | 1 - 1 file changed, 1 deletion(-) 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) => {