mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1137459 - avoid sensitive information in the FxA logs. r=ckarlof
This commit is contained in:
parent
c2a5ae90c7
commit
cc43e5d39e
@ -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.
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user