Skip to content

Commit

Permalink
fix: logging pointcouts 경로가 잘못 설정되어 있어 로그 기록이 남지 않는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Wo-ogie committed Oct 20, 2023
1 parent 77d4286 commit 7f16eb7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

public class Pointcuts {

@Pointcut("execution(* com.zelusik.eatery.controller..*(..))")
@Pointcut("execution(* com.zelusik.eatery.*..controller..*(..))")
public void controllerPoint(){}

@Pointcut("execution(* com.zelusik.eatery.service..*(..))")
@Pointcut("execution(* com.zelusik.eatery.*..service..*(..))")
public void servicePoint(){}

@Pointcut("execution(* com.zelusik.eatery.repository..*(..))")
@Pointcut("execution(* com.zelusik.eatery.*..repository..*(..))")
public void repositoryPoint(){}
}

0 comments on commit 7f16eb7

Please sign in to comment.