From 406b3adce52d36a2dfbcaa80ddd7d155da6f4e02 Mon Sep 17 00:00:00 2001 From: Casper Warden <216465704+casperwardensl@users.noreply.github.com> Date: Thu, 9 Nov 2023 18:20:39 +0000 Subject: [PATCH] Omit console spam --- lib/classes/ObjectStoreLite.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/classes/ObjectStoreLite.ts b/lib/classes/ObjectStoreLite.ts index 34c3b5a..dcb6bf4 100644 --- a/lib/classes/ObjectStoreLite.ts +++ b/lib/classes/ObjectStoreLite.ts @@ -97,7 +97,8 @@ export class ObjectStoreLite implements IObjectStore return; } - console.log(JSON.stringify(result, null, 4)); + // TODO: figure out what to do with this.. + // console.log(JSON.stringify(result, null, 4)); } } }