diff --git a/browserid/lib/wsapi.js b/browserid/lib/wsapi.js index fe5033c6fd068f05ce05e51e0b179900e3bdbdce..ef14ecb6153d2a81ffcfbffde43bf69b79b9f979 100644 --- a/browserid/lib/wsapi.js +++ b/browserid/lib/wsapi.js @@ -253,10 +253,16 @@ function setup(app) { // if they're authenticated for an email address that we don't know about, // then we should purge the stored cookie if (!isAuthed(req)) { + logger.debug("user is not authenticated"); resp.json(false); } else { db.emailKnown(req.session.authenticatedUser, function (known) { - if (!known) req.session = {} + if (!known) { + logger.debug("user is authenticated with an email that doesn't exist in the database"); + req.session = {}; + } else { + logger.debug("user is authenticated"); + } resp.json(known); }); }