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

io.github.netmikey.logunit.logback.LogbackLogProviderFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.netmikey.logunit.logback;

import io.github.netmikey.logunit.api.LogProvider;
import io.github.netmikey.logunit.api.LogProviderFactory;

/**
 * Logback implementation of the {@link LogProviderFactory} SPI.
 */
public class LogbackLogProviderFactory implements LogProviderFactory {

    @Override
    public LogProvider create() {
        return new LogbackLogProvider();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy