// Configure logging. See ..\log\prakticum.log for file output.
PropertyConfigurator.configure("../ivh5.logconf");
logger.debug("Week 1 Main starting --------");
Person p = new Person("Karel Appel");
// Implement the Person.toString() method to change this behavior!
logger.debug("Nieuwe persoon: " + p.toString());
PersonList personList = new PersonList();
personList.addPerson(p);
personList.addPerson(new Person("Robin Schellius"));
personList.addPerson(new Person("Jan Montizaan"));
// Implement the Person.toString() method to change this behavior!
logger.debug("Personenlijst: " + personList.toString());