We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df673e6 + d08ce30 commit d599ec9Copy full SHA for d599ec9
spring-aop/src/main/java/org/springframework/aop/interceptor/AbstractMonitoringInterceptor.java
@@ -103,7 +103,8 @@ protected String createInvocationTraceName(MethodInvocation invocation) {
103
if (this.logTargetClassInvocation && clazz.isInstance(invocation.getThis())) {
104
clazz = invocation.getThis().getClass();
105
}
106
- return getPrefix() + clazz.getName() + '.' + method.getName() + getSuffix();
+ String clazzName = clazz.getName();
107
+ return getPrefix() + clazzName + '.' + method.getName() + getSuffix();
108
109
110
0 commit comments