diff --git a/src/routes/authentication.js b/src/routes/authentication.js index 9f9a5f0155..14c3fb5e98 100644 --- a/src/routes/authentication.js +++ b/src/routes/authentication.js @@ -193,9 +193,7 @@ }); app.post('/register', function(req, res) { - console.log('CALLING USER CREATE'); user.create(req.body.username, req.body.password, req.body.email, function(err, uid) { - console.log('USER CREATE DONE', err, uid); if (err === null && uid) { req.login({ uid: uid