diff --git a/.github/workflows/api-deploy.yml b/.github/workflows/api-deploy.yml index d9722d6..09e32c1 100644 --- a/.github/workflows/api-deploy.yml +++ b/.github/workflows/api-deploy.yml @@ -6,6 +6,7 @@ on: - feature/db-config - main - develop + - fix/batch-count env: DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} diff --git a/adapters/in-web/src/main/kotlin/com/pokit/auth/interceptor/RequestLoggingInterceptor.kt b/adapters/in-web/src/main/kotlin/com/pokit/auth/interceptor/RequestLoggingInterceptor.kt index 995ecf8..d02b09c 100644 --- a/adapters/in-web/src/main/kotlin/com/pokit/auth/interceptor/RequestLoggingInterceptor.kt +++ b/adapters/in-web/src/main/kotlin/com/pokit/auth/interceptor/RequestLoggingInterceptor.kt @@ -17,7 +17,11 @@ class RequestLoggingInterceptor : HandlerInterceptor { handler: Any ): Boolean { val uri = request.requestURI - logger.debug { "[Requested URI] $uri" } + val params = request.parameterMap.map { (key, value) -> "$key=${value.joinToString(",")}" }.joinToString("&") + logger.info{"Requested URI: $uri"} + if (params.isNotEmpty()) { + logger.info{"Request Parameters: $params"} + } return true } }