]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Remove console.log()
authorJohannes Zellner <johannes@cloudron.io>
Thu, 9 Feb 2017 11:47:54 +0000 (12:47 +0100)
committerJohannes Zellner <johannes@cloudron.io>
Thu, 9 Feb 2017 11:47:54 +0000 (12:47 +0100)
src/auth.js

index 8645d4cb2291155d62e9c84716d5793d743ec6aa..f49ca38130b3a0e839a51f73e0c5dc7d9c2b3839 100644 (file)
@@ -91,8 +91,6 @@ passport.use(new BearerStrategy(function (token, done) {
 }));
 
 exports.logout = function (req, res, next) {
-    console.log(req.authInfo);
-
     delete gTokenStore[req.authInfo.accessToken];
 
     next(new HttpSuccess(200, {}));