From 7f008c4fa1882a70ce43595f49419beaabca2677 Mon Sep 17 00:00:00 2001 From: Geoffrey Wu Date: Fri, 19 May 2023 13:46:20 -0500 Subject: [PATCH] close #169 --- routes/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/auth.js b/routes/auth.js index 5d17b5854..1d300dc2d 100644 --- a/routes/auth.js +++ b/routes/auth.js @@ -95,7 +95,7 @@ router.post('/login', async (req, res) => { console.log(`/api/auth: LOGIN: User ${username} successfully logged in.`); res.sendStatus(200); } else { - console.log(`/api/auth: LOGIN: User ${username} failed to log in. Attempted password: ${password}`); + console.log(`/api/auth: LOGIN: User ${username} failed to log in.`); res.sendStatus(401); } });