Skip to content

Commit

Permalink
Remove console.log statement in formatSku method
Browse files Browse the repository at this point in the history
  • Loading branch information
austenstone committed Feb 6, 2024
1 parent 5d3f31e commit e6e06c3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/app/usage-report.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,6 @@ export class UsageReportService {
formatSku(sku: string) {
if (!sku) return sku;
if (this.skuMapping[sku]) return this.skuMapping[sku];
console.log(`No mapping for ${sku}`)
const skuParts = sku.split('Compute - ');
if (skuParts.length < 2) return sku;
const runtime = skuParts[1];
Expand Down

0 comments on commit e6e06c3

Please sign in to comment.