Hello, I use the following snippet to obtain a LoggerContext out of a config asdasd
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.core.LoggerContext;
(LoggerContext) LogManager.getContext(
ClassLoader.getSystemClassLoader(), false, configFileUri);
Though this causes the LoggerContext to be started implicitly. Is it
possible to obtain a LoggerContext without starting it?
Kind regards.
