Skip to content

Commit

Permalink
Remove console.log
Browse files Browse the repository at this point in the history
This console.log causes verbose JSON to be output in the console log. This PR removes it.
  • Loading branch information
panuhorsmalahti committed Feb 13, 2018
1 parent 55a6eb1 commit 53aaced
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ function jwtVerify(params, callback) {
},
function(err, payload) {
if (err) return callback(err, null);
console.log(payload);
return callback(null, payload);
}
);
Expand Down

0 comments on commit 53aaced

Please sign in to comment.