com.fincatto.documentofiscal.DFLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
package com.fincatto.documentofiscal;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public interface DFLog {
default Logger getLogger() {
return LoggerFactory.getLogger(getClass());
}
static Logger getLogger(Class> clazz) {
return LoggerFactory.getLogger(clazz);
}
}