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

com.github.schnitker.logmgr.JulLoggerFactoryNotFound Maven / Gradle / Ivy

The newest version!
package com.github.schnitker.logmgr;

import java.util.logging.Logger;

/**
 * Dummy factory, if there are no other implementations.
 */
public class JulLoggerFactoryNotFound implements JulLoggerFactory {

    @Override
    public boolean isConfigured() {
        return false;
    }
    
    @Override
    public Logger getLogger(String name) {
        throw new RuntimeException("recursive call");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy