Commit 1a4cb727 authored by yanzg's avatar yanzg

将源码打包进jar包

parent a6af90cb
...@@ -63,6 +63,7 @@ public class AspectLogResult { ...@@ -63,6 +63,7 @@ public class AspectLogResult {
logCountTime.finish(fullUrl, time, isError); logCountTime.finish(fullUrl, time, isError);
// ThreadHelper.waitRun(WAIT_MAX, WAIT_ITEM, k -> StringHelper.isEmpty(log.getLogId())) // ThreadHelper.waitRun(WAIT_MAX, WAIT_ITEM, k -> StringHelper.isEmpty(log.getLogId()))
if (StringHelper.isEmpty(log.getLogId()) || !isLogDisplay) { if (StringHelper.isEmpty(log.getLogId()) || !isLogDisplay) {
logLocal.remove(log);
return; return;
} }
String body = aspectLogBody.getBodyString(requestBody); String body = aspectLogBody.getBodyString(requestBody);
......
...@@ -131,7 +131,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean { ...@@ -131,7 +131,7 @@ public class LogLocal implements ThreadNext.Next, InitializingBean {
* *
* @param log 删除日志 * @param log 删除日志
*/ */
private void remove(LogVo log) { public void remove(LogVo log) {
this.resultWrite(log, StringHelper.EMPTY, StringHelper.EMPTY, false); this.resultWrite(log, StringHelper.EMPTY, StringHelper.EMPTY, false);
} }
......
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