com.github.danielfelgar.morphia.Log4JLoggerImplFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of morphia-logging-log4j2 Show documentation
Show all versions of morphia-logging-log4j2 Show documentation
Morphia log messages with log4j logging system.
The newest version!
package com.github.danielfelgar.morphia;
import org.mongodb.morphia.logging.Logger;
import org.mongodb.morphia.logging.LoggerFactory;
/**
* Factory class for the log4j logger implementation.
*/
public class Log4JLoggerImplFactory implements LoggerFactory {
@Override
public Logger get(Class> c) {
return new Log4JLogger(c);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy