From 2e4ec02aa7ff1c4a0f7991e2b86b2438c1d25798 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Sun, 20 Sep 2020 17:44:30 +0200 Subject: [PATCH] remove console log --- src/dashboard/lib.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dashboard/lib.js b/src/dashboard/lib.js index d795b70..8ac8ae2 100644 --- a/src/dashboard/lib.js +++ b/src/dashboard/lib.js @@ -12,9 +12,7 @@ export async function getLogsBetweenDates({ start, end, host }) { const where = { $and: [{ timestamp: { $gt: start } }, { timestamp: { $lt: end } }], } - console.log(host) if (host) where.host = host - console.log('Where', where) return await Logs.find(where) }