Merge branch 'master' into master_merge

This commit is contained in:
2024-07-01 15:13:07 +08:00
77 changed files with 2503 additions and 744 deletions

View File

@@ -26,7 +26,12 @@ public class AsyncLuceneAppender extends AspectLogbackAsyncAppender {
mdcPropertyMap.put("traceId", traceId);
}
}
super.append(event);
try {
super.append(event);
} catch (Exception e) {
System.out.println(e.getMessage());
return;
}
}
}