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

io.ebeaninternal.server.logger.DLoggerFactory Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.server.logger;

import io.ebeaninternal.api.SpiLogger;
import io.ebeaninternal.api.SpiLoggerFactory;
import org.slf4j.LoggerFactory;

/**
 * Default SpiLoggerFactory implementation.
 */
public class DLoggerFactory implements SpiLoggerFactory {

  /**
   * Just use a standard slf4j Logger.
   */
  @Override
  public SpiLogger create(String name) {
    return new DSpiLogger(LoggerFactory.getLogger(name));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy