From 113d577ad25e8240463a8ac2a71a7a76a3d77d05 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Tue, 17 Sep 2024 08:46:55 +0800 Subject: [PATCH] remove console log --- Server/db/mongo/modules/monitorModule.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Server/db/mongo/modules/monitorModule.js b/Server/db/mongo/modules/monitorModule.js index 344fce188..a7c00d726 100644 --- a/Server/db/mongo/modules/monitorModule.js +++ b/Server/db/mongo/modules/monitorModule.js @@ -379,7 +379,6 @@ const getMonitorsByTeamId = async (req, res) => { // Early return if limit is set to -1, indicating we don't want any checks if (limit === "-1") { - console.log("early return"); return { monitors, monitorCount: monitorsCount }; }