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

de.hilling.junit.cdi.util.UserLogger Maven / Gradle / Ivy

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