Merged PR 502: users.repository.serviceのログ修正

## 概要
[Task2859: users.repository.serviceのログ修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2859)

- 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず)
- 何をどう変更したか、追加したライブラリなど
idTokenとversionのログ出力が正常にできるよう修正

- このPull Requestでの対象/対象外
- 影響範囲(他の機能にも影響があるか)

## レビューポイント
- 特にレビューしてほしい箇所
- 軽微なものや自明なものは記載不要
- 修正範囲が大きい場合などに記載
- 全体的にや仕様を満たしているか等は本当に必要な時のみ記載

## UIの変更
- Before/Afterのスクショなど
- スクショ置き場

## 動作確認状況
- ローカルで確認

## 補足
- 相談、参考資料などがあれば
This commit is contained in:
水本 祐希 2023-10-18 02:02:38 +00:00
parent 364bfb5135
commit 434e3d9c27
2 changed files with 5 additions and 4 deletions

View File

@ -343,7 +343,7 @@ export class AuthService {
): Promise<boolean> {
this.logger.log(
`[IN] [${context.trackingId}] ${this.isAcceptedLatestVersion.name} | params: { ` +
`idToken: ${idToken}, };`,
`idToken.sub: ${idToken.sub}, };`,
);
try {

View File

@ -337,7 +337,8 @@ export class UsersRepositoryService {
return await this.dataSource.transaction(async (entityManager) => {
const repo = entityManager.getRepository(User);
const accountId = (await repo.findOne({ where: { external_id } }))?.account_id;
const accountId = (await repo.findOne({ where: { external_id } }))
?.account_id;
if (!accountId) {
throw new AccountNotFoundError('Account is Not Found.');
@ -470,9 +471,9 @@ export class UsersRepositoryService {
},
});
if (!latestEulaInfo || !latestDpaInfo) {
if (!latestEulaInfo.version || !latestDpaInfo.version) {
throw new TermInfoNotFoundError(
`Terms info is not found. latestEulaInfo: ${latestEulaInfo}, latestDpaInfo: ${latestDpaInfo}`,
`Terms info is not found. latestEulaInfo: ${latestEulaInfo.version}, latestDpaInfo: ${latestDpaInfo.version}`,
);
}