Skip to content

Commit

Permalink
fix: add order for CatchLogAspect
Browse files Browse the repository at this point in the history
  • Loading branch information
gdliu3 committed Mar 22, 2022
1 parent 05f067a commit a70868f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.core.annotation.Order;

/**
* @ Description : Catching and Logging
Expand All @@ -20,6 +21,7 @@
*/
@Aspect
@Slf4j
@Order(1)
public class CatchLogAspect {

/**
Expand Down

0 comments on commit a70868f

Please sign in to comment.