Add logging to help track down 401s during registration
This commit is contained in:
parent
e9f08c3da9
commit
38e9ddef40
2 changed files with 7 additions and 1 deletions
|
@ -195,7 +195,7 @@
|
|||
'confirmNumber: error clearing database',
|
||||
error && error.stack ? error.stack : error
|
||||
);
|
||||
finish();
|
||||
return finish();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
|
@ -422,6 +422,12 @@
|
|||
);
|
||||
await this.deviceNameIsEncrypted();
|
||||
|
||||
window.log.info(
|
||||
`createAccount: Number is ${number}, password has length: ${
|
||||
password ? password.length : 'none'
|
||||
}`
|
||||
);
|
||||
|
||||
const response = await this.server.confirmCode(
|
||||
number,
|
||||
verificationCode,
|
||||
|
|
Loading…
Add table
Reference in a new issue