Skip to content

Commit

Permalink
[pinpoint-apm#9204] Backport: Fix log level of abstract method transform
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehong-kim committed Sep 20, 2022
1 parent 1d34307 commit 388c49a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ private void addInterceptor0(Interceptor interceptor, int interceptorId) {
}

if (this.methodNode.isAbstract() || this.methodNode.isNative()) {
logger.warn("Skip adding interceptor. 'abstract or native method' class={}, interceptor={}", this.declaringClass.getName(), interceptorClass.getName());
logger.info("Skip adding interceptor. 'abstract or native method' class={}, interceptor={}", this.declaringClass.getName(), interceptorClass.getName());
return;
}

Expand Down

0 comments on commit 388c49a

Please sign in to comment.