2023-12-19 12:48:10 +04:00

15 lines
560 B
Java

package ProjectElectricLocomotive;
import org.apache.logging.log4j.*;
public class Main {
public static void main(String[] args)
{
System.setProperty("log4j.configutationFile", "C:\\code\\java\\ProjectElectricLocomotive\\loggerFile.xml");
// new FrameLocomotiveCollection(LogManager.getLogger("logger"));
FrameLocomotiveCollection frameLocomotiveCollection = new FrameLocomotiveCollection(LogManager.getLogger("logger"));
// new FormLocomotiveCollections(LogManager.getLogger(FormLocomotiveCollections.class));
}
}