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

org.slf4j.LoggerFactoryFriend Maven / Gradle / Ivy

There is a newer version: 2.1.0-alpha1
Show newest version
package org.slf4j;

/**
 * All methods in this class are reserved for internal use, for testing purposes.
 * 
 * 

They can can be modified, renamed or removed at any time without notice. * *

You are strongly discouraged calling any of the methods of this class. * * @since 1.8.0 * * @author Ceki Gülcü */ public class LoggerFactoryFriend { /* * Force LoggerFactory to consider itself uninitialized. */ static public void reset() { LoggerFactory.reset(); } /** * Set LoggerFactory.DETECT_LOGGER_NAME_MISMATCH variable. * * @param enabled a boolean */ public static void setDetectLoggerNameMismatch(boolean enabled) { LoggerFactory.DETECT_LOGGER_NAME_MISMATCH = enabled; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy