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

com.ibatis.common.logging.log4j.Log4jImpl Maven / Gradle / Ivy

There is a newer version: 3.0-beta-10
Show newest version
package com.ibatis.common.logging.log4j;

import org.apache.log4j.Logger;

public class Log4jImpl implements com.ibatis.common.logging.Log {

  private Logger log;

  public Log4jImpl(Class clazz) {
     log = Logger.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