Skip to content

Commit

Permalink
Use INFO for document parse errors
Browse files Browse the repository at this point in the history
  • Loading branch information
henningandersen committed Dec 10, 2024
1 parent 655090b commit 4563cae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private void maybeLog(Exception ex) {
if (logger.isDebugEnabled()) {
logger.debug("Error while parsing document: " + ex.getMessage(), ex);
} else if (IntervalThrottler.DOCUMENT_PARSING_FAILURE.accept()) {
logger.error("Error while parsing document: " + ex.getMessage(), ex);
logger.info("Error while parsing document: " + ex.getMessage(), ex);
}
}

Expand Down

0 comments on commit 4563cae

Please sign in to comment.