// 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());