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 e2dc536 commit ca08021Copy full SHA for ca08021
packages/core/src/eventSchemas/commands/downloadSchemaItemCode.ts
@@ -266,18 +266,12 @@ export class CodeDownloader {
266
codeDownloadRequest.schemaName,
267
codeDownloadRequest.schemaVersion
268
)
269
- // eslint-disable-next-line aws-toolkits/no-console-log
270
- console.log({ response })
271
272
if (Buffer.isBuffer(response.Body)) {
273
const zipContents = response.Body!.buffer
274
275
- console.log({ zipContents })
276
277
return zipContents
278
} else {
279
280
- console.log('throw new TypeError')
281
throw new TypeError('Response body should be Buffer type')
282
}
283
0 commit comments