mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
remove log
This commit is contained in:
parent
83de8ee3a6
commit
6f5d0e4a28
@ -21,6 +21,7 @@
|
||||
* 【core 】 优化全局邮箱账户初始化逻辑(pr#1114@Github)
|
||||
* 【http 】 SoapClient增加addSOAPHeader方法
|
||||
* 【http 】 完善StrUtil的注释(pr#186@Gitee)
|
||||
* 【aop 】 去除调试日志(issue#1116@Github)
|
||||
|
||||
### Bug修复
|
||||
* 【crypto 】 修复SM2验签后无法解密问题(issue#I1W0VP@Gitee)
|
||||
|
@ -1,7 +1,6 @@
|
||||
package cn.hutool.aop.interceptor;
|
||||
|
||||
import cn.hutool.aop.aspects.Aspect;
|
||||
import cn.hutool.core.lang.Console;
|
||||
import net.sf.cglib.proxy.MethodInterceptor;
|
||||
import net.sf.cglib.proxy.MethodProxy;
|
||||
|
||||
@ -43,7 +42,6 @@ public class CglibInterceptor implements MethodInterceptor, Serializable {
|
||||
if (aspect.before(target, method, args)) {
|
||||
try {
|
||||
// result = proxy.invokeSuper(obj, args);
|
||||
Console.log(target);
|
||||
result = proxy.invoke(target, args);
|
||||
} catch (InvocationTargetException e) {
|
||||
// 异常回调(只捕获业务代码导致的异常,而非反射导致的异常)
|
||||
|
Loading…
Reference in New Issue
Block a user