mdf:修改日志范围

This commit is contained in:
zhangzhiqiang
2023-03-05 13:03:52 +08:00
parent a2f3e4f170
commit 4b1ef310fc
2 changed files with 9 additions and 2 deletions

View File

@@ -51,9 +51,10 @@ import java.util.Map;
@Slf4j
public class LogAspect {
//org.nl.ext.lk.rest
//org.nl.ext.lk.rest org.nl.pda.pdm.rest
@Pointcut("execution(* org.nl.*.*..rest..*.*(..)) " +
"&& !execution(* org.nl.modules.system.rest.EsLogController.*(..)) ")
"&& !execution(* org.nl.modules.system.rest.EsLogController.*(..)) " +
"&& !execution(* org.nl.pda.pdm.rest.PfScreenController.*(..)) ")
public void logPointCut() {
}