Make Muzzle log class being instrumented

This commit is contained in:
Nikolay Martynov 2018-08-16 16:29:48 -04:00
parent e31bea71fc
commit 138f78ce4b
1 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ public interface Instrumenter {
log.debug(
"Instrumentation muzzled: {} -- {} on {}",
instrumentationPrimaryName,
getClass().getName(),
Instrumenter.Default.this.getClass().getName(),
classLoader);
for (final Reference.Mismatch mismatch : mismatches) {
log.debug("-- {}", mismatch);
@ -150,7 +150,7 @@ public interface Instrumenter {
log.debug(
"Applying instrumentation: {} -- {} on {}",
instrumentationPrimaryName,
getClass().getName(),
Instrumenter.Default.this.getClass().getName(),
classLoader);
}
return mismatches.size() == 0;