ZinnaChoi / Study-Management

온라인 스터디 관리 시스템: 부재 일정 캘린더, 토론 게시판 및 알림 기능 제공
8 stars 0 forks source link

[Fix Request] 로그인 로그 생성 시 token 정보 필터링 요청 #17

Closed ZinnaChoi closed 10 months ago

ZinnaChoi commented 10 months ago

안녕하세요 @MeMyself-And-I !

Login API 실행 시 로그가 다음과 같이 생성됩니다:

2024-01-11 15:12:17 [http-nio-8090-exec-1] INFO  LoggingServiceImpl - Req: STUDY_0001 POST /api/v1/login, Res: OK (200), Duration API: 4590 ms DB: 658 ms
2024-01-11 15:12:17 [http-nio-8090-exec-1] INFO  LoggingServiceImpl - {
  "sendDate" : "20240111151216658",
  "systemId" : "STUDY_0001",
  "retCode" : 200,
  "retMsg" : "Ok",
  "token" : "ey..."  //생략
}
2024-01-11 15:12:17 [http-nio-8090-exec-1] INFO  LoggingServiceImpl - Req: STUDY_0001 POST /api/v1/login, Res: OK (200), Duration API: 4590 ms DB: 658 ms

하지만 token은 보안 정보이기 때문에 로그가 그대로 남아서는 안되기 때문에 이를

{
  "sendDate" : "20240111151216658",
  "systemId" : "STUDY_0001",
  "retCode" : 200,
  "retMsg" : "Ok",
  "token": "***"
  }

이런식으로 로그가 필터링되어 출력되게 API 변경 요청드립니다!

MeMyself-And-I commented 10 months ago

아래 작업 내역에서 수정 되었습니다! https://github.com/ZinnaChoi/Study-Management/pull/19