[Minor] removed useless logger in ConfigurationSaxParser

This commit is contained in:
Robert von Burg 2014-11-14 22:51:46 +01:00
parent 84d287dca4
commit 9b61277518
1 changed files with 1 additions and 2 deletions

View File

@ -42,7 +42,6 @@ import java.util.Set;
import li.strolch.model.Locator;
import li.strolch.model.Locator.LocatorBuilder;
import org.slf4j.LoggerFactory;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
@ -177,7 +176,7 @@ public class ConfigurationSaxParser extends DefaultHandler {
public void endElement(String uri, String localName, String qName) throws SAXException {
Locator locator = this.locatorBuilder.build();
LoggerFactory.getLogger(getClass()).info("path: " + locator.toString()); //$NON-NLS-1$
//LoggerFactory.getLogger(getClass()).info("path: " + locator.toString()); //$NON-NLS-1$
switch (locator.toString()) {