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

org.guppy4j.log.LogProvider Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package org.guppy4j.log;

/**
 * Provides log instances
 */
public interface LogProvider {

    /**
     * @param c A class
     * @return A logger instance for the class
     */
    Log getLog(Class c);

    /**
     * A LogProvider instance that does nothing
     */
    LogProvider NONE = c -> Log.NONE;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy