From 2034005f52be29d81ba2c2b3034a0e71d8a17263 Mon Sep 17 00:00:00 2001 From: "AAVN\\pvquan" Date: Thu, 19 Dec 2024 14:18:24 +0700 Subject: [PATCH] test --- .../src/main/java/com/axonivy/market/logging/LoggableAspect.java | 1 + 1 file changed, 1 insertion(+) diff --git a/marketplace-service/src/main/java/com/axonivy/market/logging/LoggableAspect.java b/marketplace-service/src/main/java/com/axonivy/market/logging/LoggableAspect.java index 059a1998..6bca4a9f 100644 --- a/marketplace-service/src/main/java/com/axonivy/market/logging/LoggableAspect.java +++ b/marketplace-service/src/main/java/com/axonivy/market/logging/LoggableAspect.java @@ -38,6 +38,7 @@ public void logMethodCall(JoinPoint joinPoint) throws MissingHeaderException { ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); if (attributes != null) { + log.debug("#extractHeaders arguments {} ---- {}", signature.getParameterNames(), joinPoint.getArgs()); HttpServletRequest request = attributes.getRequest(); Map headersMap = extractHeaders(request, signature, joinPoint); saveLogToDailyFile(headersMap);