removing error output for incorrect pw on login

This commit is contained in:
Julian Lam
2014-03-24 11:07:37 -04:00
parent 9f5893bc83
commit 6fb69e6c19

View File

@@ -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'));
}