From 0eac03394c387a791b4dd489c08c23cf64f0f2e9 Mon Sep 17 00:00:00 2001 From: Anton Georgiev <anton.georgiev@protonmail.com> Date: Mon, 22 Feb 2021 19:48:14 +0000 Subject: [PATCH] remove duplicated logging of pengingAuth --- .../imports/api/users/server/handlers/validateAuthToken.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/bigbluebutton-html5/imports/api/users/server/handlers/validateAuthToken.js b/bigbluebutton-html5/imports/api/users/server/handlers/validateAuthToken.js index 3c73db44c8..72904a13e1 100644 --- a/bigbluebutton-html5/imports/api/users/server/handlers/validateAuthToken.js +++ b/bigbluebutton-html5/imports/api/users/server/handlers/validateAuthToken.js @@ -33,9 +33,6 @@ export default function handleValidateAuthToken({ body }, meetingId) { check(registeredOn, Number); const pendingAuths = pendingAuthenticationsStore.take(meetingId, userId, authToken); - - Logger.info(`PendingAuths length [${pendingAuths.length}]`); - if (pendingAuths.length === 0) return; Logger.info(`PendingAuths length [${pendingAuths.length}]`); if (pendingAuths.length === 0) return; -- GitLab