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

org.openstack4j.openstack.logging.LoggerFactorySupplier Maven / Gradle / Ivy

package org.openstack4j.openstack.logging;

/**
 * Produces instances of {@link Logger} associated with the specified category
 */
public interface LoggerFactorySupplier {
    
    Logger getLogger(String category);
    
    Logger getLogger(Class category);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy