Skip to content

Commit

Permalink
Downgrade noisy log statement (#2396)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpmellema committed Sep 13, 2024
1 parent 475caa8 commit 0b9ffc4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Model transform(ModelTransformer transformer, Model model) {
boolean idChanged = !input.getId().equals(updatedInput.getId());
if (idChanged && isSingularReference(reverse, input, operation)) {
toRemove.add(input);
LOGGER.info("Removing now unused input shape " + input.getId());
LOGGER.fine("Removing now unused input shape " + input.getId());
}
}
if (outputChanged) {
Expand All @@ -87,7 +87,7 @@ Model transform(ModelTransformer transformer, Model model) {
boolean idChanged = !output.getId().equals(updatedOutput.getId());
if (idChanged && isSingularReference(reverse, output, operation)) {
toRemove.add(output);
LOGGER.info("Removing now unused output shape " + output.getId());
LOGGER.fine("Removing now unused output shape " + output.getId());
}
}
updates.add(builder.build());
Expand Down

0 comments on commit 0b9ffc4

Please sign in to comment.