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 e999bd7 commit 3297b1c
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import org.springframework.stereotype.Service
import org.springframework.transaction.annotation.Transactional
import org.springframework.web.reactive.function.BodyInserters
import org.springframework.web.reactive.function.client.WebClient
import kotlin.math.log

@Service
class AuthServiceImpl(
Expand Down Expand Up @@ -129,6 +130,9 @@ class AuthServiceImpl(

@Transactional
override fun googleLogin(code: String): Jwt {
logger().info("Google Login Start")
logger().info("Code: $code")

val token = WebClient.create("https://oauth2.googleapis.com")
.post()
.uri("/token")
Expand Down

0 comments on commit 3297b1c

Please sign in to comment.