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

com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLogFactory Maven / Gradle / Ivy

There is a newer version: 1.0.13.10
Show newest version
package com.dahuatech.hutool.log.dialect.commons;

import com.dahuatech.hutool.log.Log;
import com.dahuatech.hutool.log.LogFactory;

/**
 * Apache Commons Logging
 *
 * @author Looly
 */
public class ApacheCommonsLogFactory extends LogFactory {

  public ApacheCommonsLogFactory() {
    super("Apache Common Logging");
    checkLogExist(org.apache.commons.logging.LogFactory.class);
  }

  @Override
  public Log createLog(String name) {
    try {
      return new com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLog4JLog(name);
    } catch (Exception e) {
      return new com.dahuatech.hutool.log.dialect.commons.ApacheCommonsLog(name);
    }
  }

  @Override
  public Log createLog(Class clazz) {
    try {
      return new ApacheCommonsLog4JLog(clazz);
    } catch (Exception e) {
      return new ApacheCommonsLog(clazz);
    }
  }

  @Override
  protected void checkLogExist(Class logClassName) {
    super.checkLogExist(logClassName);
    // Commons Logging在调用getLog时才检查是否有日志实现,在此提前检查,如果没有实现则跳过之
    getLog(ApacheCommonsLogFactory.class);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy