com.github.panchitoboy.common.logging.LoggerProducer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-rest Show documentation
Show all versions of common-rest Show documentation
Libreria de ayuda la generacion de servicios REST
package com.github.panchitoboy.common.logging;
import javax.enterprise.inject.Produces;
import javax.enterprise.inject.spi.InjectionPoint;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class LoggerProducer {
@Produces
public Logger expose(InjectionPoint ip) {
String loggerName = ip.getMember().getDeclaringClass().getName();
return LoggerFactory.getLogger(loggerName);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy