Skip to content

Commit

Permalink
feat: drx logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jbj338033 committed Jul 31, 2024
1 parent 9f2cf01 commit 8050f0b
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ class AuthServiceImpl(
}
.onRawStatus({ it == 403 }) {
logger().info("Login Failed: 403")
it.bodyToMono(String::class.java).map {
logger().info("login Failed Message: $it")
}
throw CustomException(ErrorCode.INVALID_GOOGLE_CODE)
}
.onRawStatus({ it == 404 }) {
Expand Down

0 comments on commit 8050f0b

Please sign in to comment.