Skip to content

Commit

Permalink
EPMRPP-96337 || Clean up logging
Browse files Browse the repository at this point in the history
  • Loading branch information
pbortnik committed Jan 9, 2025
1 parent 5cf8aa3 commit 99a8de7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void startElement(String uri, String localName, String qName, Attributes
handleProperty(attributes);
case UNKNOWN:
default:
LOGGER.warn("Unknown tag: {}", qName);
LOGGER.debug("Unknown tag: {}", qName);
break;
}
}
Expand Down Expand Up @@ -163,7 +163,7 @@ public void endElement(String uri, String localName, String qName) {
pushDescription();
case UNKNOWN:
default:
LOGGER.warn("Unknown tag: {}", qName);
LOGGER.debug("Unknown tag: {}", qName);
break;
}
}
Expand Down

0 comments on commit 99a8de7

Please sign in to comment.