Skip to content

Commit ca08021

Browse files
committed
remove console log
1 parent e2dc536 commit ca08021

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/core/src/eventSchemas/commands/downloadSchemaItemCode.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,18 +266,12 @@ export class CodeDownloader {
266266
codeDownloadRequest.schemaName,
267267
codeDownloadRequest.schemaVersion
268268
)
269-
// eslint-disable-next-line aws-toolkits/no-console-log
270-
console.log({ response })
271269

272270
if (Buffer.isBuffer(response.Body)) {
273271
const zipContents = response.Body!.buffer
274-
// eslint-disable-next-line aws-toolkits/no-console-log
275-
console.log({ zipContents })
276272

277273
return zipContents
278274
} else {
279-
// eslint-disable-next-line aws-toolkits/no-console-log
280-
console.log('throw new TypeError')
281275
throw new TypeError('Response body should be Buffer type')
282276
}
283277
}

0 commit comments

Comments
 (0)