Skip to content

Commit 6f5954d

Browse files
committed
chore: remove stray console logs
1 parent c63dc7e commit 6f5954d

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/app/modules/myinfo/myinfo.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,6 @@ export class MyInfoServiceClass {
462462
return Result.fromThrowable(
463463
() => jwt.verify(loginJwt, spcpMyInfoConfig.myInfoJwtSecret),
464464
(error) => {
465-
console.log('xxx4', error)
466465
logger.error({
467466
message: 'Error while verifying MyInfo login cookie',
468467
meta: {
@@ -476,7 +475,6 @@ export class MyInfoServiceClass {
476475
if (isMyInfoLoginCookie(decoded)) {
477476
return ok(decoded)
478477
}
479-
console.log('xxx3', decoded)
480478
return err(new MyInfoInvalidLoginCookieError())
481479
})
482480
}

src/app/modules/submission/encrypt-submission/encrypt-submission.controller.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,6 @@ const submitEncryptModeForm = async (
197197
}
198198
case FormAuthType.SGID_MyInfo:
199199
case FormAuthType.MyInfo: {
200-
console.log('xxx', req.cookies)
201200
const jwtPayloadResult = await extractMyInfoLoginJwt(
202201
req.cookies,
203202
authType,
@@ -207,7 +206,6 @@ const submitEncryptModeForm = async (
207206
return uinFin
208207
})
209208
.mapErr((error) => {
210-
console.log('xxx2', error)
211209
logger.error({
212210
message: `Error verifying MyInfo${
213211
authType === FormAuthType.SGID_MyInfo ? '(over SGID)' : ''

0 commit comments

Comments
 (0)