Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  PrologEnvironment#setPredicate: Reduce log level to DEBUG

Change-Id: I2ec9564a7be7f27bd65e9e04e1d96bdfe3667471
This commit is contained in:
David Pursehouse
2019-02-18 15:45:56 +09:00

View File

@@ -82,7 +82,7 @@ public class PrologEnvironment extends BufferingPrologControl {
public void setPredicate(Predicate goal) {
super.setPredicate(goal);
int reductionLimit = args.reductionLimit(goal);
log.info("setting reductionLimit {}", reductionLimit);
log.debug("setting reductionLimit {}", reductionLimit);
setReductionLimit(reductionLimit);
}