|
|
@@ -47,7 +47,7 @@ public class LogAspect {
|
|
|
Method method = signature.getMethod();
|
|
|
Log log = method.getAnnotation(Log.class);
|
|
|
String content = log.value(), token = log.token(), module = log.module(), name = log.name();
|
|
|
- String contentValue = parseSpEL(method, arguments, content, String.class, null);
|
|
|
+ String contentValue = parseSpEL(method, arguments, content, String.class, content);
|
|
|
String nameValue = parseSpEL(method, arguments, name, String.class, null);
|
|
|
String tokenValue = parseSpEL(method, arguments, token, String.class, null);
|
|
|
String methodName = method.getName();
|