rev:修改

This commit is contained in:
2024-06-21 14:07:27 +08:00
parent a46c59ac48
commit 1ae38d6d86

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;
}
}
}