Skip to content

Commit

Permalink
chore : health check api 로깅 제외
Browse files Browse the repository at this point in the history
  • Loading branch information
JiwonKKang committed Jul 25, 2024
1 parent 563c769 commit 71d062a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class LogAspect {
public void all() {
}

@Pointcut("execution(* core.startup.mealtoktok.api..*Api.*(..))")
@Pointcut("execution(* core.startup.mealtoktok.api..*Api.*(..)) && !execution(* core.startup.mealtoktok.api.HealthCheckApi..*(..))")
public void controller() {
}

Expand Down
1 change: 0 additions & 1 deletion common/src/main/resources/application-common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ oauth:
app-id: ${KAKAO_APP_ID}
admin-key: ${KAKAO_ADMIN_KEY}
service-key: ${KAKAO_REST_API_KEY}

---
spring:
config:
Expand Down

0 comments on commit 71d062a

Please sign in to comment.