I am using log4j-1.2.17 and need to upgrade with log4j-2.17 (latest as of now). In log4j 1.x i am using some internal java class to build log4j configuration programmatically and imported some packages like
import org.apache.log4j.Hierarchy;
import org.apache.log4j.spi.LoggerRepository;
import org.apache.log4j.spi.RepositorySelector;
import org.apache.log4j.PropertyConfigurator;
import org.apache.log4j.xml.DOMConfigurator;
import org.apache.log4j.spi.RootCategory;
But i can see above packages are not available in log4j 2.17.0. I checked https://logging.apache.org/log4j/2.x/manual/migration.html and https://www.docs4dev.com/docs/en/log4j2/2.x/all/manual-migration.html but no luck.
can anyone please help me here? Thanks in advance.