All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ibatis.logging.slf4j.Slf4jImpl Maven / Gradle / Ivy

There is a newer version: 3.0-beta-10
Show newest version
package org.apache.ibatis.logging.slf4j;

import org.apache.ibatis.logging.Log;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Slf4jImpl implements Log {

  private Logger log;

  public Slf4jImpl(Class clazz) {
    log = LoggerFactory.getLogger(clazz);
  }

  public boolean isDebugEnabled() {
    return log.isDebugEnabled();
  }

  public void error(String s, Throwable e) {
    log.error(s, e);
  }

  public void error(String s) {
    log.error(s);
  }

  public void debug(String s) {
    log.debug(s);
  }

  public void warn(String s) {
    log.warn(s);
  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy