Commit 335fcc8c authored by 李秀明's avatar 李秀明

删除多余日志打印

parent 764d3bd1
......@@ -35,8 +35,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable
*/
public Object intercept(Invocation invocation) throws Throwable {
System.out.println("====intercept======");
Object[] args = invocation.getArgs();
MappedStatement mappedStatement = (MappedStatement) args[0];
Object parameter = args[1];
......@@ -101,7 +99,6 @@ public class PluginInterceptor implements Interceptor {
}
public Object plugin(Object target) {
System.out.println("-----------------------------plugin-------------------------");
return Plugin.wrap(target, this);
}
......
......@@ -31,8 +31,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable
*/
public Object intercept(Invocation invocation) throws Throwable {
System.out.println("====intercept======");
Object[] args = invocation.getArgs();
MappedStatement mappedStatement = (MappedStatement) args[0];
Object parameter = args[1];
......@@ -87,7 +85,6 @@ public class PluginInterceptor implements Interceptor {
}
public Object plugin(Object target) {
System.out.println("-----------------------------plugin-------------------------");
return Plugin.wrap(target, this);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment