feat : 清除一些细节
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user