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

io.t3w.correios.T3WLoggable Maven / Gradle / Ivy

There is a newer version: 1.0.33
Show newest version
package io.t3w.correios;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

interface T3WLoggable {

    default Logger getLogger() {
        return LoggerFactory.getLogger(getClass());
    }

    static Logger getLogger(Class clazz) {
        return LoggerFactory.getLogger(clazz);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy