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) }