Skip to content

Commit

Permalink
removed console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
sahat committed Dec 20, 2015
1 parent 167c021 commit 8ac86c6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion examples/server/node/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ app.post('/auth/facebook', function(req, res) {
if (response.statusCode !== 200) {
return res.status(500).send({ message: profile.error.message });
}
console.log(profile);
if (req.headers.authorization) {
User.findOne({ facebook: profile.id }, function(err, existingUser) {
if (existingUser) {
Expand Down

0 comments on commit 8ac86c6

Please sign in to comment.