be.yildizgames.common.logging.logback.LogbackEngineProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-logging-logback Show documentation
Show all versions of common-logging-logback Show documentation
Logback implementation for Common Logging library.
package be.yildizgames.common.logging.logback;
import be.yildizgames.common.logging.LogEngine;
import be.yildizgames.common.logging.LogEngineProvider;
/**
* Provide the log engine.
*
* @author Grégory Van den Borre
*/
public class LogbackEngineProvider implements LogEngineProvider {
/**
* Provide the engine.
* @return The log engine.
*/
@Override
public final LogEngine getLogEngine() {
return new LogbackLogEngine();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy