diff --git a/app/controllers/auth.js b/app/controllers/auth.js index e15af27..ee47be8 100644 --- a/app/controllers/auth.js +++ b/app/controllers/auth.js @@ -140,7 +140,7 @@ class AuthController extends SiteController { async postLogin (req, res, next) { const redirectUri = req.session.loginReturnTo || '/'; - this.log.debug('starting passport.authenticate', { session: req.session, redirectUri }); + this.log.debug('starting passport.authenticate', { redirectUri }); passport.authenticate('dtp-local', (error, user/*, info*/) => { if (error) { req.session.loginResult = error.toString();