feat : 清除一些细节

This commit is contained in:
clay
2024-03-08 20:42:15 +08:00
parent 974d69ec80
commit 5b15932859
3 changed files with 13 additions and 44 deletions

View File

@@ -47,7 +47,7 @@ public class LogAspect {
@Around("@within(log) || @annotation(log)")
public Object before(ProceedingJoinPoint point, Log log) throws Throwable {
public Object around(ProceedingJoinPoint point, Log log) throws Throwable {
long startTime = System.currentTimeMillis();
try {
Object proceed = point.proceed(point.getArgs());