aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/routes.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--routes.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/routes.js b/routes.js
index 0e57dc7..7abe210 100644
--- a/routes.js
+++ b/routes.js
@@ -38,7 +38,6 @@ module.exports = function(app, passport, auth) {
app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/test' }), users.signin);
app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/test' }), function(req, res) {
- console.log('/auth/facebook/callback --- ' + req.user.username);
res.redirect('/dashboard');
});