Skip to content

Commit

Permalink
PIP-215 Trivially demote logger.info to debug for a noisy message
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcornmell committed Mar 20, 2023
1 parent dd6c229 commit 844c937
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public Page<Long> doSelectConceptIds(SExpressionConstraint expressionConstraint,
String ecl = expressionConstraint.toEclString();
String path = branchCriteria.getBranchPath();

logger.info("ECL on path {}, \"{}\"", path, expressionConstraint.toEclString());
logger.debug("ECL on path {}, \"{}\"", path, expressionConstraint.toEclString());

Optional<Page<Long>> pageOptional;
if (eclCacheEnabled) {
Expand Down

0 comments on commit 844c937

Please sign in to comment.