Skip to content

Commit

Permalink
[#9185] 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 15, 2022
1 parent 4ea29d7 commit e43b9a8
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 e43b9a8

Please # to comment.