Skip to content

Commit 71c0010

Browse files
committed
fix #472 - remove unnecessary INFO logging
1 parent 850ecc8 commit 71c0010

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/com/marklogic/client/alerting/RuleDefinition.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,9 @@ public void importQueryDefinition(XMLWriteHandle queryDef) {
173173
// modify XMLEvent list if the imported XML was a structured query.
174174
XMLEvent firstEvent = importedList.get(0);
175175
if (firstEvent.getEventType() == XMLStreamConstants.START_ELEMENT) {
176-
logger.info("Get element.");
177176
StartElement startElement = firstEvent.asStartElement();
178177
if (startElement.getName().getNamespaceURI() == RequestConstants.SEARCH_NS &&
179178
startElement.getName().getLocalPart().equals("query")) {
180-
logger.info("It's a structured query!!!");
181179
//wrap in search.
182180
List<XMLEvent> wrappedList = new ArrayList<XMLEvent>();
183181
XMLEventFactory eventFactory = XMLEventFactory.newInstance();

0 commit comments

Comments
 (0)