Browse Source

Polishing

pull/27093/head
Sam Brannen 6 years ago
parent
commit
51a5517a45
  1. 6
      spring-aop/src/main/java/org/springframework/aop/interceptor/AbstractMonitoringInterceptor.java

6
spring-aop/src/main/java/org/springframework/aop/interceptor/AbstractMonitoringInterceptor.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -103,8 +103,8 @@ public abstract class AbstractMonitoringInterceptor extends AbstractTraceInterce @@ -103,8 +103,8 @@ public abstract class AbstractMonitoringInterceptor extends AbstractTraceInterce
if (this.logTargetClassInvocation && clazz.isInstance(invocation.getThis())) {
clazz = invocation.getThis().getClass();
}
String clazzName = clazz.getName();
return getPrefix() + clazzName + '.' + method.getName() + getSuffix();
String className = clazz.getName();
return getPrefix() + className + '.' + method.getName() + getSuffix();
}
}

Loading…
Cancel
Save