@spfn/auth 0.1.0-alpha.86 → 0.1.0-alpha.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5799,6 +5799,8 @@ async function loginService(params) {
5799
5799
  if (!user || !user.passwordHash) {
5800
5800
  throw new InvalidCredentialsError();
5801
5801
  }
5802
+ console.log("user", user);
5803
+ console.log("\uD328\uC2A4\uC6CC\uB4DC: ", password);
5802
5804
  const isValid = await verifyPassword(password, user.passwordHash);
5803
5805
  if (!isValid) {
5804
5806
  throw new InvalidCredentialsError();