Commit 49c7848c authored by yanzg's avatar yanzg

不记录系统日志

parent 89b4db50
......@@ -191,7 +191,7 @@ public class BaseRequestAspect {
protected void responseLog(LogVo log, String tag, String url, boolean logFlag, ProceedingJoinPoint joinPoint, long start, Object result, Exception resultEx) {
try {
long time = System.currentTimeMillis() - start;
boolean isLog = (logFlag && logCommon && this.logLocal.isLog(tag, url)) || resultEx != null;
boolean isLog = (logFlag && logCommon && !this.logLocal.isLog(tag, url)) || resultEx != null;
String name = joinPoint.getSignature().getName();
// 处理结果
ResponseResult responseResult = responseDefault;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment