Merge branch '5.2.x'
This commit is contained in:
commit
622ccc5767
|
@ -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
|
|||
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…
Reference in New Issue