Commit 7a5fd654 by Johannes Zellner

Remove console.log()

1 parent 4a27fce7
Showing with 0 additions and 2 deletions
...@@ -91,8 +91,6 @@ passport.use(new BearerStrategy(function (token, done) { ...@@ -91,8 +91,6 @@ passport.use(new BearerStrategy(function (token, done) {
})); }));
exports.logout = function (req, res, next) { exports.logout = function (req, res, next) {
console.log(req.authInfo);
delete gTokenStore[req.authInfo.accessToken]; delete gTokenStore[req.authInfo.accessToken];
next(new HttpSuccess(200, {})); next(new HttpSuccess(200, {}));
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!