From 6fb69e6c1939bfa7906fbc72ad453460e9c8f30e Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 24 Mar 2014 11:07:37 -0400 Subject: [PATCH] removing error output for incorrect pw on login --- src/routes/authentication.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/routes/authentication.js b/src/routes/authentication.js index 60e54c0c57..1098a1e489 100644 --- a/src/routes/authentication.js +++ b/src/routes/authentication.js @@ -184,7 +184,6 @@ bcrypt.compare(password, userData.password, function(err, res) { if (err) { - winston.err(err.message); return next(new Error('bcrypt compare error')); }