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

com.dahuatech.hutool.log.dialect.jboss.JbossLogFactory Maven / Gradle / Ivy

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

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

/**
 * Jboss-Logging log.
 *
 * @author Looly
 * @since 4.1.21
 */
public class JbossLogFactory extends LogFactory {

  /** 构造 */
  public JbossLogFactory() {
    super("JBoss Logging");
    checkLogExist(org.jboss.logging.Logger.class);
  }

  @Override
  public Log createLog(String name) {
    return new com.dahuatech.hutool.log.dialect.jboss.JbossLog(name);
  }

  @Override
  public Log createLog(Class clazz) {
    return new JbossLog(clazz);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy