Skip to content

Commit

Permalink
Change logging level for SpecialVariableTransformer
Browse files Browse the repository at this point in the history
  • Loading branch information
opatrascoiu committed May 17, 2024
1 parent c97228e commit a1b294b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public DMNModelRepository transform(DMNModelRepository repository) {
}

for (TDefinitions definitions: repository.getAllDefinitions()) {
this.logger.info(String.format("Replace inputExpressions with ? in inputEntries in model '%s'", definitions.getName()));
this.logger.debug(String.format("Replace inputExpressions with ? in inputEntries in model '%s'", definitions.getName()));
definitions.accept(this.visitor, null);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public void testUpdateUnaryTests() {
// TODO Add more tests
doTest("contains(x.y.z, \"123\")", "x.y.z", "contains(?, \"123\")");
doTest("review.nextActionNew", "review.nextAction", "review.nextActionNew");
doTest("input1 == 123", "input", "input1 == 123");
}

private void doTest(String unaryTestsText, String inputExpression, String expectedValue) {
Expand Down

0 comments on commit a1b294b

Please sign in to comment.