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

com.fincatto.documentofiscal.DFLog Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy