blob: 47a6ae84b488dfa105b0b20db8ae5d3217fe412a [file] [log] [blame]
package org.apache.logging.log4j.spi;
/**
*
*/
public interface LoggerContextFactory {
/**
* @param FQCN The fully qualified class name of the caller.
* @param currentContext If true returns the current Context, if false returns the Context appropriate
* for the caller if a more appropriate Context can be determined.
* @return The LoggerContext.
*/
LoggerContext getContext(String FQCN, boolean currentContext);
}