We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d5953 commit 40f3424Copy full SHA for 40f3424
smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CommandGenerator.java
@@ -171,12 +171,6 @@ private void generateCommandMiddlewareResolver(String configType) {
171
() -> writer.writeInline("(output: any) => output"));
172
});
173
174
- writer.openBlock("\nif (typeof logger.info === 'function') {", "}\n", () -> {
175
- writer.openBlock("logger.info({", "});", () -> {
176
- writer.write("clientName,");
177
- writer.write("commandName,");
178
- });
179
180
writer.write("const { requestHandler } = configuration;");
181
writer.openBlock("return stack.resolve(", ");", () -> {
182
writer.write("(request: FinalizeHandlerArguments<any>) => ");
0 commit comments