We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd7fe62 commit 88149c8Copy full SHA for 88149c8
1 file changed
smithy-model/src/main/java/software/amazon/smithy/model/loader/ModelLoader.java
@@ -71,7 +71,9 @@ static boolean load(
71
return loadParsedNode(Node.parse(inputStream, filename), operationConsumer);
72
}
73
} else {
74
- LOGGER.warning(() -> "Ignoring unrecognized Smithy model file: " + filename);
+ if (!filename.endsWith("manifest")) {
75
+ LOGGER.warning(() -> "Ignoring unrecognized Smithy model file: " + filename);
76
+ }
77
return false;
78
79
} catch (IOException e) {
0 commit comments