From 1d48f1c3d5d76266f75c209a81ce14356015e683 Mon Sep 17 00:00:00 2001 From: Alexander Alemayhu Date: Sun, 24 Apr 2022 20:17:49 +0200 Subject: [PATCH] chore: remove debug log --- server/middleware/RequireAuthentication.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/middleware/RequireAuthentication.ts b/server/middleware/RequireAuthentication.ts index 61a7520aa..a98b144d7 100644 --- a/server/middleware/RequireAuthentication.ts +++ b/server/middleware/RequireAuthentication.ts @@ -8,7 +8,6 @@ const RequireAuthentication = async ( next: () => any ) => { const user = await TokenHandler.GetUserFrom(req.cookies.token); - console.debug(`RequreAuthentication`); if (!user) { return res.redirect("/login#login"); } else {