Skip to content

Commit f83e441

Browse files
author
David Hasani
committed
remove console.log statements
1 parent 292efea commit f83e441

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

packages/core/src/codewhisperer/client/codewhisperer.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,7 @@ export class DefaultCodeWhispererClient {
258258
if (!AuthUtil.instance.isValidEnterpriseSsoInUse() && !globals.telemetry.telemetryEnabled) {
259259
return
260260
}
261-
console.log('about to make API call')
262261
const response = await (await this.createUserSdkClient()).sendTelemetryEvent(requestWithCommonFields).promise()
263-
console.log('API call response =', response)
264262
getLogger().debug(`codewhisperer: sendTelemetryEvent requestID: ${response.$response.requestId}`)
265263
}
266264

packages/core/src/codewhisperer/service/transformByQ/transformationResultsViewProvider.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -408,11 +408,6 @@ export class ProposedTransformationExplorer {
408408
const metricsPath = path.join(pathContainingArchive, ExportResultArchiveStructure.PathToMetrics)
409409
const metricsData = JSON.parse(fs.readFileSync(metricsPath, 'utf8'))
410410

411-
console.log('metricsData.linesOfCodeChanged =', metricsData.linesOfCodeChanged)
412-
console.log('metricsData.charactersOfCodeChanged =', metricsData.charactersOfCodeChanged)
413-
console.log('linesOfCodeSubmitted =', transformByQState.getLinesOfCodeSubmitted())
414-
console.log('transformByQState.getTransformationType() =', transformByQState.getTransformationType())
415-
416411
await codeWhisperer.codeWhispererClient.sendTelemetryEvent({
417412
telemetryEvent: {
418413
transformEvent: {

0 commit comments

Comments
 (0)