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

删除多余日志打印

parent 764d3bd1
...@@ -35,8 +35,6 @@ public class PluginInterceptor implements Interceptor { ...@@ -35,8 +35,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable * @throws Throwable
*/ */
public Object intercept(Invocation invocation) throws Throwable { public Object intercept(Invocation invocation) throws Throwable {
System.out.println("====intercept======");
Object[] args = invocation.getArgs(); Object[] args = invocation.getArgs();
MappedStatement mappedStatement = (MappedStatement) args[0]; MappedStatement mappedStatement = (MappedStatement) args[0];
Object parameter = args[1]; Object parameter = args[1];
...@@ -101,7 +99,6 @@ public class PluginInterceptor implements Interceptor { ...@@ -101,7 +99,6 @@ public class PluginInterceptor implements Interceptor {
} }
public Object plugin(Object target) { public Object plugin(Object target) {
System.out.println("-----------------------------plugin-------------------------");
return Plugin.wrap(target, this); return Plugin.wrap(target, this);
} }
......
...@@ -31,8 +31,6 @@ public class PluginInterceptor implements Interceptor { ...@@ -31,8 +31,6 @@ public class PluginInterceptor implements Interceptor {
* @throws Throwable * @throws Throwable
*/ */
public Object intercept(Invocation invocation) throws Throwable { public Object intercept(Invocation invocation) throws Throwable {
System.out.println("====intercept======");
Object[] args = invocation.getArgs(); Object[] args = invocation.getArgs();
MappedStatement mappedStatement = (MappedStatement) args[0]; MappedStatement mappedStatement = (MappedStatement) args[0];
Object parameter = args[1]; Object parameter = args[1];
...@@ -87,7 +85,6 @@ public class PluginInterceptor implements Interceptor { ...@@ -87,7 +85,6 @@ public class PluginInterceptor implements Interceptor {
} }
public Object plugin(Object target) { public Object plugin(Object target) {
System.out.println("-----------------------------plugin-------------------------");
return Plugin.wrap(target, this); 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