1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 05:30:01 +00:00

PasswordLoginStrategy - update error handling

This commit is contained in:
Jared Snider
2025-03-20 15:26:52 -04:00
parent 3638464e82
commit e86d8ba212

View File

@@ -312,7 +312,9 @@ export class PasswordLoginStrategy extends BaseLoginStrategy {
} catch (error) {
// If this process fails for any reason, we don't want to stop the login process
// so just log the error and continue.
this.logService.error(`Failed to register user for OPAQUE key exchange: ${error}`);
this.logService.error(
`Failed to register user for OPAQUE key exchange: ${JSON.stringify(error)}`,
);
}
}
}