Skip to content

Commit

Permalink
Downgrade noisy log statement in CreateDedicatedInputAndOutput transf…
Browse files Browse the repository at this point in the history
…ormer (#2451)
  • Loading branch information
hpmellema authored Nov 12, 2024
1 parent 857f05d commit 53be722
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ private StructureShape renameShapeIfNeeded(
return struct;
}

LOGGER.info(() -> "Renaming " + struct.getId() + " to " + expectedName);
LOGGER.fine(() -> "Renaming " + struct.getId() + " to " + expectedName);
ShapeId newId = createSyntheticShapeId(model, operation, suffix);

return struct.toBuilder()
Expand Down Expand Up @@ -229,7 +229,7 @@ private static ShapeId createSyntheticShapeId(
private static ShapeId resolveConflict(ShapeId id, String suffix) {
// Say GetFooRequest exists. This then returns GetFooOperationRequest.
String updatedName = id.getName().replace(suffix, "Operation" + suffix);
LOGGER.info(() -> "Deconflicting synthetic ID from " + id + " to use name " + updatedName);
LOGGER.fine(() -> "Deconflicting synthetic ID from " + id + " to use name " + updatedName);
return ShapeId.fromParts(id.getNamespace(), updatedName);
}
}

0 comments on commit 53be722

Please sign in to comment.