Skip to content

Commit e6e06c3

Browse files
committed
Remove console.log statement in formatSku method
1 parent 5d3f31e commit e6e06c3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/app/usage-report.service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ export class UsageReportService {
276276
formatSku(sku: string) {
277277
if (!sku) return sku;
278278
if (this.skuMapping[sku]) return this.skuMapping[sku];
279-
console.log(`No mapping for ${sku}`)
280279
const skuParts = sku.split('Compute - ');
281280
if (skuParts.length < 2) return sku;
282281
const runtime = skuParts[1];

0 commit comments

Comments
 (0)