李永德
1 year ago
16 changed files with 126 additions and 15 deletions
@ -0,0 +1,50 @@ |
|||
package org.nl.config.mybatis; |
|||
|
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.apache.ibatis.logging.Log; |
|||
|
|||
/** |
|||
* @Author: lyd |
|||
* @Description: |
|||
* @Date: 2023/11/16 |
|||
*/ |
|||
@Slf4j |
|||
public class MyStdOutImpl implements Log { |
|||
public MyStdOutImpl(String clazz) { |
|||
} |
|||
@Override |
|||
public boolean isDebugEnabled() { |
|||
return true; |
|||
} |
|||
|
|||
@Override |
|||
public boolean isTraceEnabled() { |
|||
return true; |
|||
} |
|||
|
|||
@Override |
|||
public void error(String s, Throwable e) { |
|||
log.error(s); |
|||
e.printStackTrace(System.err); |
|||
} |
|||
|
|||
@Override |
|||
public void error(String s) { |
|||
log.error(s); |
|||
} |
|||
|
|||
@Override |
|||
public void debug(String s) { |
|||
log.debug(s); |
|||
} |
|||
|
|||
@Override |
|||
public void trace(String s) { |
|||
log.trace(s); |
|||
} |
|||
|
|||
@Override |
|||
public void warn(String s) { |
|||
log.warn(s); |
|||
} |
|||
} |
Loading…
Reference in new issue