Make Muzzle log class being instrumented
This commit is contained in:
parent
e31bea71fc
commit
138f78ce4b
|
@ -140,7 +140,7 @@ public interface Instrumenter {
|
||||||
log.debug(
|
log.debug(
|
||||||
"Instrumentation muzzled: {} -- {} on {}",
|
"Instrumentation muzzled: {} -- {} on {}",
|
||||||
instrumentationPrimaryName,
|
instrumentationPrimaryName,
|
||||||
getClass().getName(),
|
Instrumenter.Default.this.getClass().getName(),
|
||||||
classLoader);
|
classLoader);
|
||||||
for (final Reference.Mismatch mismatch : mismatches) {
|
for (final Reference.Mismatch mismatch : mismatches) {
|
||||||
log.debug("-- {}", mismatch);
|
log.debug("-- {}", mismatch);
|
||||||
|
@ -150,7 +150,7 @@ public interface Instrumenter {
|
||||||
log.debug(
|
log.debug(
|
||||||
"Applying instrumentation: {} -- {} on {}",
|
"Applying instrumentation: {} -- {} on {}",
|
||||||
instrumentationPrimaryName,
|
instrumentationPrimaryName,
|
||||||
getClass().getName(),
|
Instrumenter.Default.this.getClass().getName(),
|
||||||
classLoader);
|
classLoader);
|
||||||
}
|
}
|
||||||
return mismatches.size() == 0;
|
return mismatches.size() == 0;
|
||||||
|
|
Loading…
Reference in New Issue