From 53aaced37ba2552f7305866d080fdd447000ad1b Mon Sep 17 00:00:00 2001 From: Panu Horsmalahti Date: Tue, 13 Feb 2018 15:13:22 +0200 Subject: [PATCH] Remove console.log This console.log causes verbose JSON to be output in the console log. This PR removes it. --- lib/strategy.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/strategy.js b/lib/strategy.js index 99d00f1..a764ec0 100644 --- a/lib/strategy.js +++ b/lib/strategy.js @@ -111,7 +111,6 @@ function jwtVerify(params, callback) { }, function(err, payload) { if (err) return callback(err, null); - console.log(payload); return callback(null, payload); } );