Bug 1137459 - avoid sensitive information in the FxA logs. r=ckarlof

This commit is contained in:
Mark Hammond 2015-03-02 10:02:13 +11:00
parent c2a5ae90c7
commit cc43e5d39e

View File

@ -748,7 +748,11 @@ FxAccountsInternal.prototype = {
},
startVerifiedCheck: function(data) {
log.debug("startVerifiedCheck " + JSON.stringify(data));
log.debug("startVerifiedCheck", data && data.verified);
if (logPII) {
log.debug("startVerifiedCheck with user data", data);
}
// Get us to the verified state, then get the keys. This returns a promise
// that will fire when we are completely ready.
//