de.hilling.junit.cdi.util.UserLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdi-test-core Show documentation
Show all versions of cdi-test-core Show documentation
implementation of cdi-test
The newest version!
package de.hilling.junit.cdi.util;
import java.util.logging.Logger;
/**
* Logger factory to provide an instance of {@link java.util.logging.Logger} to log events like cdi-test lifecycle,
* detected or changed beans etc.
*
* The logger will be named "de.hilling.cdi-test".
*
*/
public class UserLogger {
private static final Logger CDI_TEST_LOGGER = Logger.getLogger("de.hilling.cdi-test");
private UserLogger() {
}
public static Logger getInstance() {
return CDI_TEST_LOGGER;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy