Polishing

This commit is contained in:
Sam Brannen 2020-06-27 14:33:44 +02:00
parent d08ce303f1
commit 51a5517a45
1 changed files with 3 additions and 3 deletions

View File

@ -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();
}
}