io.github.netmikey.logunit.logback.LogbackLogProviderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logunit-logback Show documentation
Show all versions of logunit-logback Show documentation
LogUnit's Logback implementation.
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();
}
}